Spread Windows Forms 12.0 Product Documentation
GetDirectAltRowName Method (DefaultSheetStyleModel)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetStyleModel Class : GetDirectAltRowName Method
Index of the alternating row style to set
Gets the style name for an alternating row style.
Syntax
'Declaration
 
Public Overridable Function GetDirectAltRowName( _
   ByVal index As Integer _
) As String
'Usage
 
Dim instance As DefaultSheetStyleModel
Dim index As Integer
Dim value As String
 
value = instance.GetDirectAltRowName(index)
public virtual string GetDirectAltRowName( 
   int index
)

Parameters

index
Index of the alternating row style to set

Return Value

String containing the name of the alternating row
Exceptions
ExceptionDescription
Specified index is not valid; must be between 0 and the total number of styles
Remarks

The index (zero-based) must be between 0 and (AltRowCount-1).

Example
This example sets and returns the name of the first alternating row.
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);
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)
See Also

Reference

DefaultSheetStyleModel Class
DefaultSheetStyleModel Members