Skip to main content
All docs
V26.1
  • Row

    WorkbookSanitizeOptions.InvisibleCellText Property

    Gets or sets how to sanitize invisible cell text in the workbook.

    Namespace: DevExpress.Spreadsheet

    Assembly: DevExpress.Spreadsheet.v26.1.Core.dll

    Declaration

    public InvisibleContentSanitizeMode InvisibleCellText { get; set; }

    Property Value

    Type Description
    InvisibleContentSanitizeMode

    An enumeration value that specifies how to sanitize invisible cell text in the workbook.

    Available values:

    Name Description
    Ignore

    Invisible content should be ignored when sanitizing a workbook or a document.

    MakeVisible

    Invisible content should be made visible when sanitizing a workbook or a document.

    Remove

    Invisible content should be removed from the workbook or document.

    Remarks

    The InvisibleCellText property detects and handles text made visually invisible through a foreground color that matches the page background. Set the InvisibleCellText property to InvisibleContentSanitizeMode.Remove to delete this content, or InvisibleContentSanitizeMode.MakeVisible to make it visible.

    See Also