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


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

Glossary Item Box

Gets the renderer used to render a cell at the specified row and column.

Syntax

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

Parameters

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

Return Value

IRenderer object that represents the renderer used to render the cell

Example

This example returns the renderer for the specified cell.
C#Copy Code
FarPoint.Web.Spread.SheetView sv;
FarPoint.Web.Spread.Renderer.IRenderer r;
sv = e.SheetView;
r = sv.GetRenderer(0, 0);
Response.Write("The renderer for the cell is a " + Convert.ToString(r));
Visual BasicCopy Code
Dim sv As FarPoint.Web.Spread.SheetView
Dim r As FarPoint.Web.Spread.Renderer.IRenderer
sv = FpSpread1.ActiveSheetView
r = sv.GetRenderer(0, 0)
Response.Write("The renderer for the cell is a " & Convert.ToString(r))

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.