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: PicoXLSX/Worksheet.cs
+75Lines changed: 75 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1918,6 +1918,42 @@ public void SetColumnWidth(int columnNumber, float width)
1918
1918
}
1919
1919
}
1920
1920
1921
+
/// <summary>
1922
+
/// Sets the default column style of the passed column address
1923
+
/// </summary>
1924
+
/// <param name="columnAddress">Column address (A - XFD)</param>
1925
+
/// <param name="style">Style to set as default. If null, the style is cleared</param>
1926
+
/// <returns>Assigned style or null if cleared</returns>
1927
+
/// <exception cref="RangeException">Throws a RangeException:<br></br>a) If the passed column address is out of range<br></br>b) if the column width is out of range (0 - 255.0)</exception>
/// Sets the default column style of the passed column number (zero-based)
1936
+
/// </summary>
1937
+
/// <param name="columnNumber">Column number (zero-based, from 0 to 16383)</param>
1938
+
/// <param name="style">Style to set as default. If null, the style is cleared</param>
1939
+
/// <returns>Assigned style or null if cleared</returns>
1940
+
/// <exception cref="RangeException">Throws a RangeException:<br></br>a) If the passed column number is out of range<br></br>b) if the column width is out of range (0 - 255.0)</exception>
/// <param name="defaultColumnStyle">Style to assign as default column style. Can be null (to clear)</param>
2576
+
/// <param name="unmanaged">Internally used: If true, the style repository is not invoked and only the style object of the cell is updated. Do not use!</param>
2577
+
/// <returns>If the passed style already exists in the repository, the existing one will be returned, otherwise the passed one</returns>
0 commit comments