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.SheetView sv=FpSpread1.ActiveSheetView;
sv.DefaultStyle.CellType=new FarPoint.Web.Spread.GeneralCellType();
sv.RenderEditors=true; |
Visual Basic | Copy Code |
---|
Dim sv As FarPoint.Web.Spread.SheetView
sv=FpSpread1.ActiveSheetView
sv.DefaultStyle.CellType=NewFarPoint.Web.Spread.GeneralCellType()
sv.RenderEditors=True |
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