Spread for ASP.NET 7.0 Product Documentation
GetStyleInfo Method
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > SheetView Class : GetStyleInfo Method


row
Row index of the cell
column
Column index of the cell

Glossary Item Box

Gets the composite cell style information for a cell at the specified row and column.

Syntax

Visual Basic (Declaration) 
Public Overridable Function GetStyleInfo( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As StyleInfo
Visual Basic (Usage)Copy Code
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As StyleInfo
 
value = instance.GetStyleInfo(row, column)
C# 
public virtual StyleInfo GetStyleInfo( 
   int row,
   int column
)

Parameters

row
Row index of the cell
column
Column index of the cell

Return Value

StyleInfo object with the style information for the cell

Remarks

To set the style for a cell, use the SetStyleInfo method.

Example

This example returns the border color, one part of the style information, for the sheet.
C#Copy Code
FarPoint.Web.Spread.SheetView sv;
FarPoint.Web.Spread.Model.StyleInfo si;
sv = FpSpread1.ActiveSheetView;
si = sv.GetStyleInfo(0, 0)
Response.Write("The border color for the style is " + si.Border.BorderColor.ToString())
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
Dim si As FarPoint.Web.Spread.StyleInfo
si = sv.GetStyleInfo(0, 0)
Response.Write("The border color for the style is " & si.Border.BorderColor.ToString())

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

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