'Declaration Public Overloads Function GetActualRowHeight( _ ByVal row As Integer, _ ByVal sheetArea As SheetArea _ ) As Double
Parameters
- row
- The row index.
- sheetArea
- The sheet area.
Return Value
Returns the row height in pixels.
'Declaration Public Overloads Function GetActualRowHeight( _ ByVal row As Integer, _ ByVal sheetArea As SheetArea _ ) As Double
listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActualColumnWidth(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.ColumnHeader).ToString()); listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActualColumnWidth(2, 2, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.ColumnHeader).ToString()); listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActualRowHeight(2, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells).ToString()); listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActualRowHeight(5, 2, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells).ToString()); listBox1.Items.Add(gcSpreadSheet1.Sheets[0].GetActualRowVisible(11,GrapeCity.Xaml.SpreadSheet.Data.SheetArea.RowHeader).ToString());
listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActualColumnWidth(1, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.ColumnHeader).ToString()) listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActualColumnWidth(2, 2, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.ColumnHeader).ToString()) listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActualRowHeight(2, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells).ToString()) listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActualRowHeight(5, 2, GrapeCity.Xaml.SpreadSheet.Data.SheetArea.Cells).ToString()) listBox1.Items.Add(gcSpreadSheet1.Sheets(0).GetActualRowVisible(11,GrapeCity.Xaml.SpreadSheet.Data.SheetArea.RowHeader).ToString())