[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDisplayFormat.FormulaHidden

FormulaHidden Property

FormulaHidden

Gets a value that indicates whether the formula of the associated IRange object is hidden when the worksheet is protected as displayed in the current user interface.

Declaration
bool FormulaHidden { get; }
ReadOnly Property FormulaHidden As Boolean
Examples
IRange range = worksheet.Range["A1"];
range.Formula = "=SUM(B1:B2)";
range.FormulaHidden = true;
bool formulaHidden = range.DisplayFormat.FormulaHidden;