Spread for ASP.NET 8.0 Product Documentation
ShowPopupButton Property (BaseDropDownCellType)
Example 


Gets or sets whether the DateTimeCellType editor support showing a popup calendar control.
Syntax
'Declaration
 
Public Overridable Property ShowPopupButton As Boolean
'Usage
 
Dim instance As BaseDropDownCellType
Dim value As Boolean
 
instance.ShowPopupButton = value
 
value = instance.ShowPopupButton
public virtual bool ShowPopupButton {get; set;}
Example
This example sets the ShowPopupButton property.
FarPoint.Web.Spread.DateTimeCellType datecell = new FarPoint.Web.Spread.DateTimeCellType();
datecell.ShowPopupButton = true;
FpSpread1.ActiveSheetView.Columns[1].Width = 175;
FpSpread1.ActiveSheetView.Cells[1,1].CellType = datecell;
Dim datecell As New FarPoint.Web.Spread.DateTimeCellType()
datecell.ShowPopupButton = True
FpSpread1.ActiveSheetView.Columns(1).Width = 175
FpSpread1.ActiveSheetView.Cells(1, 1).CellType = datecell
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

Reference

BaseDropDownCellType Class
BaseDropDownCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.