Spread for ASP.NET 7.0 Product Documentation
Renderer Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > Cell Class : Renderer Property


Glossary Item Box

Gets or sets the renderer for a cell.

Syntax

Visual Basic (Declaration) 
Public Property Renderer As IRenderer
Visual Basic (Usage)Copy Code
Dim instance As Cell
Dim value As IRenderer
 
instance.Renderer = value
 
value = instance.Renderer
C# 
public IRenderer Renderer {get; set;}

Property Value

IRenderer object containing the renderer for this cell

Remarks

The setting for this property can be overridden if a named style is assigned to the cell using the StyleName property, and that named style sets the renderer to use.

Example

This example creates a Cell object and an IRenderer object. The IRenderer object is declared as a CheckBoxRenderer object and is then used as the renderer for the Cell object. To verify this, the Cell objects Renderer is returned in a text box.
C#Copy Code
FarPoint.Web.Spread.Cell mycell;
FarPoint.Web.Spread.Renderer.CheckBoxRenderer rend=new FarPoint.Web.Spread.Renderer.CheckBoxRenderer();
FarPoint.Web.Spread.Editor.CheckBoxEditor edit=new FarPoint.Web.Spread.Editor.CheckBoxEditor();
mycell=FpSpread1.Cells[0,0];
mycell.Renderer=rend;
mycell.Editor=edit;
TextBox1.Text=Convert.ToString(rend);
Visual BasicCopy Code
Dim mycell As FarPoint.Web.Spread.Cell
Dim rend As New FarPoint.Web.Spread.Renderer.CheckBoxRenderer()
Dim edit As New FarPoint.Web.Spread.Editor.CheckBoxEditor()
mycell=FpSpread1.Cells(0,0)
mycell.Renderer=rend
mycell.Editor=edit
TextBox1.Text=Convert.ToString(rend)

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.