Spread Windows Forms 6.0 Product Documentation
SetDirectAltRowName Method
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > DefaultSheetStyleModel Class : SetDirectAltRowName Method


index
Index of the alternating row style to set
styleName
Name of the style to set

Glossary Item Box

Sets the name of the specified alternating row style in the model to the specified named style.

Syntax

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)
C# 
public virtual void SetDirectAltRowName( 
   int index,
   string styleName
)

Parameters

index
Index of the alternating row style to set
styleName
Name of the style to set

Exceptions

ExceptionDescription
System.IndexOutOfRangeException Specified index is not valid; must be between 0 and the total number of styles
System.ArgumentNullExceptionNo style is specified or specified style is null
System.ArgumentExceptionNo style is specified or specified style is empty

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.
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 BasicCopy 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

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.