Spread ASP.NET 6.0 Product Documentation
Columns Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > RowHeader Class : Columns Property


Glossary Item Box

Gets a Columns object for the columns in the row header.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property Columns As Columns
Visual Basic (Usage)Copy Code
Dim instance As RowHeader
Dim value As Columns
 
value = instance.Columns
C# 
public Columns Columns {get;}

Property Value

Columns object containing the columns in this row header

Remarks

This property is available at run time only.

Example

This example creates a row header and draws a red dotted border around the first column of the row header.
C#Copy Code
FarPoint.Web.Spread.RowHeader rhdr;
rhdr = FpSpread1.ActiveSheetView.RowHeader;
rhdr.Columns[0].Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 2);
Visual BasicCopy Code
Dim rhdr As FarPoint.Web.Spread.RowHeader
rhdr = FpSpread1.ActiveSheetView.RowHeader
rhdr.Columns(0).Border = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, Color.Red, 2) 

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.