| Visual Basic (Declaration) | |
|---|---|
Public Overridable Sub SetDirectAltRowName( _ ByVal index As Integer, _ ByVal styleName As String _ )  | |
| Visual Basic (Usage) |  Copy Code | 
|---|---|
Dim instance As DefaultSheetStyleModel Dim index As Integer Dim styleName As String instance.SetDirectAltRowName(index, styleName)  | |
Parameters
- index
 - Index of the alternating row style to set
 - styleName
 - Name of the style to set
 
| Exception | Description | 
|---|---|
| System.IndexOutOfRangeException | Specified index is not valid; must be between 0 and the total number of styles | 
| System.ArgumentNullException | No style is specified or specified style is null | 
| System.ArgumentException | No style is specified or specified style is empty | 
The index (zero-based) must be between 0 and (AltRowCount-1).
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)  | |
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8