Spread WPF Documentation
SetColumnWidth Method
Example 


The column index of the first column.
The sheet area.
The width.
Sets the width using the specified unit type for the specified columns in this sheet.
Syntax
'Declaration
 
Public Sub SetColumnWidth( _
   ByVal column As System.Integer, _
   ByVal sheetArea As SheetArea, _
   ByVal width As System.Double _
) 
'Usage
 
Dim instance As Worksheet
Dim column As System.Integer
Dim sheetArea As SheetArea
Dim width As System.Double
 
instance.SetColumnWidth(column, sheetArea, width)
public void SetColumnWidth( 
   System.int column,
   SheetArea sheetArea,
   System.double width
)

Parameters

column
The column index of the first column.
sheetArea
The sheet area.
width
The width.
Example
This example uses the SetColumnWidth 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)
Requirements

Target Platforms: Windows 7, Windows 8 Desktop, Windows Vista SP1 or later, Windows Server 2000, Windows 2000 Professional (SP4), Windows XP (SP2), Windows 2008, Windows 2003 Server (SP1)

See Also

Reference

Worksheet Class
Worksheet Members

 

 


Copyright © GrapeCity, inc. All rights reserved.