Gets or sets whether the FarPoint Spread always displays the editor if the editor is defined for a cell.
            
            
            
Syntax
| Visual Basic (Declaration) |   | 
|---|
Public Property RenderEditors As Boolean  | 
 
| Visual Basic (Usage) |  Copy Code | 
|---|
Dim instance As SheetView
Dim value As Boolean
 
instance.RenderEditors = value
 
value = instance.RenderEditors  | 
 
| C# |   | 
|---|
public bool RenderEditors {get; set;} | 
 
            
            
            Property Value
Boolean:
 true to have Spread draw the editors; 
false otherwise
 
            
			
			
            Remarks
            
            
Example
This example shows how to use the RenderEditors property.
             
| C# |  Copy Code | 
|---|
FarPoint.Web.Spread.SheetViewsv=FpSpread1.ActiveSheetView;
sv.DefaultStyle.CellType=newFarPoint.Web.Spread.GeneralCellType();
sv.RenderEditors=true;  | 
 
| Visual Basic |  Copy Code | 
|---|
DimsvAsFarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.DefaultStyle.CellType=NewFarPoint.Web.Spread.GeneralCellType()
sv.RenderEditors=True  | 
 
 
            
            
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