'Declaration Public Property RenderEditors As Boolean
'Usage Dim instance As SheetView Dim value As Boolean instance.RenderEditors = value value = instance.RenderEditors
public bool RenderEditors {get; set;}
'Declaration Public Property RenderEditors As Boolean
'Usage Dim instance As SheetView Dim value As Boolean instance.RenderEditors = value value = instance.RenderEditors
public bool RenderEditors {get; set;}
Set this property to true to have Spread draw the editors for cells that have editors associated with them. If you set this property to true, the client-side scripting is disabled, and Spread does not update the models, even if the IsTrackingViewState property is set to true. You then have to handle editing events as necessary.
Set this property to false to have Spread draw the renderers for cells that are not in edit mode, and draw the editors for cells that are in edit mode.
FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView; sv.DefaultStyle.CellType=new FarPoint.Web.Spread.GeneralCellType(); sv.RenderEditors=true;
Dim sv As FarPoint.Web.Spread.SheetView sv=FpSpread1.ActiveSheetView sv.DefaultStyle.CellType=New FarPoint.Web.Spread.GeneralCellType() sv.RenderEditors=True