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


The row index.
The sheet area.
Set to true to let the users resize the specified row.
Sets whether users can resize the specified row in the specified sheet area.
Syntax
'Declaration
 
Public Overloads Sub SetRowResizable( _
   ByVal row As Integer, _
   ByVal sheetArea As SheetArea, _
   ByVal value As Boolean _
) 
'Usage
 
Dim instance As Worksheet
Dim row As Integer
Dim sheetArea As SheetArea
Dim value As Boolean
 
instance.SetRowResizable(row, sheetArea, value)
public void SetRowResizable( 
   int row,
   SheetArea sheetArea,
   bool value
)

Parameters

row
The row index.
sheetArea
The sheet area.
value
Set to true to let the users resize the specified row.
Example
This example uses the SetRowResizable 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)
Requirements

Target Platforms: Windows Server 2012, Windows RT

See Also

Reference

Worksheet Class
Worksheet Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.

Support Options