You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libxlsxwriter/src/worksheet/mod.rs
+45-4Lines changed: 45 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1250,9 +1250,12 @@ impl<'a> Worksheet<'a> {
1250
1250
/// The Worksheet.insert_image_opt() function takes additional optional parameters to position and scale the image, see below.
1251
1251
///
1252
1252
/// ### Note
1253
-
/// The scaling of a image may be affected if is crosses a row that has its default height changed due to a font that is larger than the default font size or that has text wrapping turned on. To avoid this you should explicitly set the height of the row using Worksheet.set_row() if it crosses an inserted image.
1253
+
/// The scaling of a image may be affected if is crosses a row that has its default height changed due to a font that is larger than
1254
+
/// the default font size or that has text wrapping turned on. To avoid this you should explicitly set the height of the row using
1255
+
/// [`Worksheet::set_row`] if it crosses an inserted image.
1254
1256
///
1255
-
/// BMP images are only supported for backward compatibility. In general it is best to avoid BMP images since they aren't compressed. If used, BMP images must be 24 bit, true color, bitmaps.
1257
+
/// BMP images are only supported for backward compatibility. In general it is best to avoid BMP images since they aren't compressed.
1258
+
/// If used, BMP images must be 24 bit, true color, bitmaps.
/// The [`Worksheet::select`] function is used to indicate that a worksheet is selected in a multi-sheet workbook.
1439
+
///
1440
+
/// A selected worksheet has its tab highlighted. Selecting worksheets is a way of grouping them together so that, for example, several worksheets could be printed in one go.
1441
+
/// A worksheet that has been activated via the [`Worksheet::activate`] function will also appear as selected.
0 commit comments