Gets or sets the number of alternating row styles in the model.
Syntax
Visual Basic (Declaration) | |
---|
Property AltRowCount As Integer |
Visual Basic (Usage) | Copy Code |
---|
Dim instance As ISheetStyleModel
Dim value As Integer
instance.AltRowCount = value
value = instance.AltRowCount |
C# | |
---|
int AltRowCount {get; set;} |
Property Value
Integer number of alternating rows
Example
C# | Copy Code |
---|
FarPoint.Web.Spread.Model.ISheetStyleModel iss;
iss = (FarPoint.Web.Spread.Model.ISheetStyleModel)FpSpread1.ActiveSheetView.StyleModel;
iss.AltRowCount = 2;
Dim si As New FarPoint.Web.Spread.StyleInfo;
si.BackColor = Color.Yellow;
iss.SetDirectAltRowInfo(1, si);
|
Visual Basic | Copy Code |
---|
Dim iss As FarPoint.Web.Spread.Model.ISheetStyleModel
iss = FpSpread1.ActiveSheetView.StyleModel
iss.AltRowCount = 2
Dim si As New FarPoint.Web.Spread.StyleInfo
si.BackColor = Color.Yellow
iss.SetDirectAltRowInfo(1, si) |
Requirements
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
See Also