Visual Basic (Declaration) | |
---|---|
Public Function GetColumnSizeable( _ ByVal column As Integer _ ) As Boolean |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As SheetView Dim column As Integer Dim value As Boolean value = instance.GetColumnSizeable(column) |
Parameters
- column
- Column index
Return Value
true if users can resize the column; otherwise falseThis 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.
This example creates a SheetView object and a Column object. The second column cannot be resized and this value is returned to a list box using the SheetView object.
C# | Copy Code |
---|---|
FarPoint.Web.Spread.Columnmycol; FarPoint.Web.Spread.SheetViewsv; sv=FpSpread1.ActiveSheetView; mycol=sv.Columns[1]; mycol.Resizable=False; ListBox1.Items.Add(Convert.ToString(sv.GetColumnSizeable(1))); |
Visual Basic | Copy Code |
---|---|
DimmycolAsFarPoint.Web.Spread.Column
DimsvAsFarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
mycol=sv.Columns(1)
mycol.Resizable=False
ListBox1.Items.Add(sv.GetColumnSizeable(1)) |
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
Reference
SheetView ClassSheetView Members
GetRowSizeable Method
SetColumnSizeable Method