FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.Model Namespace > INamedStyleSupport Interface : SetDirectAltRowName Method |
'Usage Dim instance As INamedStyleSupport Dim index As Integer Dim styleName As String instance.SetDirectAltRowName(index, styleName)
FarPoint.Win.Spread.Model.INamedStyleSupport ins; FarPoint.Win.Spread.NamedStyle ns = new FarPoint.Win.Spread.NamedStyle("StyleHeaders"); ns.BackColor = Color.LightBlue; fpSpread1.NamedStyles.Add(ns); fpSpread1.ActiveSheet.ColumnHeaderRowCount = 5; ins = (FarPoint.Win.Spread.Model.INamedStyleSupport)fpSpread1.ActiveSheet.Models.ColumnHeaderStyle; ins.SetDirectAltRowName(1, "StyleHeaders"); label1.Text = "The name of the style used to change the color in the headers is " + ins.GetDirectAltRowName(1).ToString();
Dim ins As FarPoint.Win.Spread.Model.INamedStyleSupport Dim ns As New FarPoint.Win.Spread.NamedStyle("StyleHeaders") ns.BackColor = Color.LightBlue FpSpread1.NamedStyles.Add(ns) FpSpread1.ActiveSheet.ColumnHeaderRowCount = 5 ins = FpSpread1.ActiveSheet.Models.ColumnHeaderStyle ins.SetDirectAltRowName(1, "StyleHeaders") Label1.Text = "The name of the style used to change the color in the headers is " & ins.GetDirectAltRowName(1).ToString()
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10