GrapeCity.Xaml.SpreadSheet.Data
SetColumnResizable(Int32,Boolean) Method
Example 


GrapeCity.Xaml.SpreadSheet.Data Namespace > Worksheet Class > SetColumnResizable Method : SetColumnResizable(Int32,Boolean) Method
The column index.
Set to true to allow users to resize the column.
Sets whether users can resize individual columns in the specified sheet area.
Syntax
'Declaration
 
Public Overloads Sub SetColumnResizable( _
   ByVal column As Integer, _
   ByVal value As Boolean _
) 
'Usage
 
Dim instance As Worksheet
Dim column As Integer
Dim value As Boolean
 
instance.SetColumnResizable(column, value)
public void SetColumnResizable( 
   int column,
   bool value
)

Parameters

column
The column index.
value
Set to true to allow users to resize the column.
Example
This example uses the SetColumnResizable method.
gcSpreadSheet1.Sheets[0].SetColumnResizable(3, false);
gcSpreadSheet1.Sheets[0].SetRowResizable(3, false);
//gcSpreadSheet1.Sheets[0].SetColumnResizable(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, false);
//gcSpreadSheet1.Sheets[0].SetRowResizable(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, false);
GcSpreadSheet1.Sheets(0).SetColumnResizable(3, False)
GcSpreadSheet1.Sheets(0).SetRowResizable(3, False)
'GcSpreadSheet1.Sheets(0).SetColumnResizable(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, False)
'GcSpreadSheet1.Sheets(0).SetRowResizable(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells, False)
See Also

Reference

Worksheet Class
Worksheet Members
Overload List