Visual Basic (Declaration) | |
---|---|
Public ReadOnly Property Sheets As SheetViewCollection |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As FpSpread Dim value As SheetViewCollection value = instance.Sheets |
C# | |
---|---|
public SheetViewCollection Sheets {get;} |
Property Value
SheetViewCollection object containing the sheets in the component.This property returns a collection of sheets, which are SheetView objects.
This example shows how to use the Sheets property to set properties an entire sheet or group of sheets.
C# | Copy Code |
---|---|
FpSpread1.Sheets[0].DefaultStyle.ForeColor = Color.Teal;
FpSpread1.Sheets[0].DefaultStyle.Font.Bold = True;
FpSpread1.Sheets[0].DefaultStyle.Font.Name = "Comic Sans MS";
FpSpread1.Sheets[0].DefaultStyle.Font.Size = FontUnit.Point(12);
FpSpread1.Sheets[0].DefaultStyle.Font.Italic = True;
|
Visual Basic | Copy Code |
---|---|
FpSpread1.Sheets.Count = 2 Dim fun As New System.Web.UI.WebControls.FontUnit(12) FpSpread1.Sheets(0).DefaultStyle.ForeColor = Color.Teal FpSpread1.Sheets(0).DefaultStyle.Font.Bold = True FpSpread1.Sheets(0).DefaultStyle.Font.Name = "Comic Sans MS" FpSpread1.Sheets(0).DefaultStyle.Font.Size = fun FpSpread1.Sheets(0).DefaultStyle.Font.Italic = True |
Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6
Reference
FpSpread ClassFpSpread Members
SheetViewCollection Class
SheetView Class