GrapeCity.Xaml.SpreadSheet.UI
Workbook Property (GcSpreadSheet)
Example 


GrapeCity.Xaml.SpreadSheet.UI Namespace > GcSpreadSheet Class : Workbook Property
Gets the workbook associated with the control.
Syntax
'Declaration
 
<BrowsableAttribute()>
Public ReadOnly Property Workbook As Workbook
'Usage
 
Dim instance As GcSpreadSheet
Dim value As Workbook
 
value = instance.Workbook
[Browsable()]
public Workbook Workbook {get;}
Example
This example uses the Workbook property.
gcSpreadSheet1.ShowFreezeLine = true;
gcSpreadSheet1.Sheets[0].FrozenColumnCount = 1;
listBox1.Items.Add(gcSpreadSheet1.Workbook.ToString());
GcSpreadSheet1.ShowFreezeLine = True
GcSpreadSheet1.Sheets(0).FrozenColumnCount = 1
ListBox1.Items.Add(GcSpreadSheet1.Workbook.ToString())
See Also

Reference

GcSpreadSheet Class
GcSpreadSheet Members