Spread Silverlight Documentation
SetRowHeight Method
Example 


GrapeCity.Windows.SpreadSheet.Data Namespace > Worksheet Class : SetRowHeight Method
The row index.
The sheet area.
The height.
Sets the height using the specified unit type for the specified row in the specified sheet area.
Syntax
'Declaration
 
Public Sub SetRowHeight( _
   ByVal row As System.Integer, _
   ByVal sheetArea As SheetArea, _
   ByVal height As System.Double _
) 
'Usage
 
Dim instance As Worksheet
Dim row As System.Integer
Dim sheetArea As SheetArea
Dim height As System.Double
 
instance.SetRowHeight(row, sheetArea, height)
public void SetRowHeight( 
   System.int row,
   SheetArea sheetArea,
   System.double height
)

Parameters

row
The row index.
sheetArea
The sheet area.
height
The height.
Example
This example uses the SetRowHeight method.
gcSpreadSheet1.Sheets[0].SetValue(0, 0, "value");
gcSpreadSheet1.Sheets[0].AddRows(0, 2);
gcSpreadSheet1.Sheets[0].AddColumns(0, 2);
gcSpreadSheet1.Sheets[0].SetRowHeight(0, SheetArea.Cells, 50d);
gcSpreadSheet1.Sheets[0].SetColumnWidth(0, SheetArea.Cells, 150d);
gcSpreadSheet1.Sheets[0].Rows[0].Background = new SolidColorBrush(Colors.Gray);
gcSpreadSheet1.Sheets[0].Columns[0].Background = new SolidColorBrush(Colors.Brown);
GcSpreadSheet1.Sheets(0).SetValue(0, 0, "value")
GcSpreadSheet1.Sheets(0).AddRows(0, 2)
GcSpreadSheet1.Sheets(0).AddColumns(0, 2)
GcSpreadSheet1.Sheets(0).SetRowHeight(0, SheetArea.Cells, 50.0)
GcSpreadSheet1.Sheets(0).SetColumnWidth(0, SheetArea.Cells, 150.0)
GcSpreadSheet1.Sheets(0).Rows(0).Background = New SolidColorBrush(Colors.Gray)
GcSpreadSheet1.Sheets(0).Columns(0).Background = New SolidColorBrush(Colors.Brown)
See Also

Reference

Worksheet Class
Worksheet Members