[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IPageSetup.IsPercentScale

IsPercentScale Property

IsPercentScale

Gets or sets whether the worksheet is scaled as a percentage.

If this property is true, the worksheet uses percentage-based scaling. If this property is false, the FitToPagesWide and FitToPagesTall settings control how the worksheet is scaled.

Declaration
bool IsPercentScale { get; set; }
Property IsPercentScale As Boolean
Examples
IPageSetup pageSetup = worksheet.PageSetup;
pageSetup.IsPercentScale = true;
bool isPercentScale = pageSetup.IsPercentScale;