Gets the style name for an alternating row style.
Syntax
Visual Basic (Declaration) | |
---|
Public Overridable Function GetDirectAltRowName( _
ByVal index As Integer _
) As String |
Parameters
- index
- Index of the alternating row style to set
Return Value
String containing the name of the alternating row
Exceptions
Remarks
Example
This example sets and returns the name of the first alternating row.
C# | Copy Code |
---|
FarPoint.Win.Spread.Model.DefaultSheetStyleModel defstyleModel = new FarPoint.Win.Spread.Model.DefaultSheetStyleModel();
string s;
defstyleModel = (FarPoint.Win.Spread.Model.DefaultSheetStyleModel)fpSpread1.ActiveSheet.Models.Style;
defstyleModel.SetDirectAltRowName(0, "Style");
s = defstyleModel.GetDirectAltRowName(0);
listBox1.Items.Add(s); |
Visual Basic | Copy Code |
---|
Dim defstyleModel As New FarPoint.Win.Spread.Model.DefaultSheetStyleModel()
Dim s As String
defstyleModel = FpSpread1.ActiveSheet.Models.Style
defstyleModel.SetDirectAltRowName(0, "Style")
s = defstyleModel.GetDirectAltRowName(0)
ListBox1.Items.Add(s) |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also