FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : GetColumnSizeable Method |
This method returns true if the user can resize the specified column.
To specify whether users can resize a column, use the SetColumnSizeable method.
To specify whether users can resize a specified row, use the SetRowSizeable method.
FarPoint.Web.Spread.Column mycol;
FarPoint.Web.Spread.SheetView sv;
sv=FpSpread1.ActiveSheetView;
mycol=sv.Columns[1];
mycol.Resizable=false;
ListBox1.Items.Add(Convert.ToString(sv.GetColumnSizeable(1)));
Dim mycol As FarPoint.Web.Spread.Column Dim sv As FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView mycol=sv.Columns(1) mycol.Resizable=False ListBox1.Items.Add(sv.GetColumnSizeable(1))
Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional
SheetView Class
SheetView Members
GetRowSizeable Method
SetColumnSizeable Method