[]
Specifies the display mode when date or number data width is longer than the column width.
public enum NumbersFitMode
Public Enum NumbersFitMode
IWorkbookView bookView = workbook.BookView;
worksheet.Range["A1"].Value = 123456789;
bookView.NumbersFitMode = NumbersFitMode.Overflow;
NumbersFitMode numbersFitMode = bookView.NumbersFitMode;
| Name | Description |
|---|---|
| Mask | Indicates replacing data content with "###". |
| Overflow | Indicates display data content as a string, if neighboring cell is empty, overflow the content. |