Spread for ASP.NET 10 Product Documentation
ShowPopupButton Property (DoubleCellType)
Example 


Gets or sets whether the editor supports showing a pop-up control.
Syntax
'Declaration
 
Public Overrides Property ShowPopupButton As Boolean
'Usage
 
Dim instance As DoubleCellType
Dim value As Boolean
 
instance.ShowPopupButton = value
 
value = instance.ShowPopupButton
public override bool ShowPopupButton {get; set;}
Example
This example shows a pop-up button when the cell is in edit mode.
FarPoint.Web.Spread.DoubleCellType dblc = new FarPoint.Web.Spread.DoubleCellType();
dblc.DecimalDigits = 3;
dblc.FixedPoint = true;
dblc.ShowPopupButton = true;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = dblc;
FpSpread1.ActiveSheetView.Cells[0, 0].Value = 435.98745;
Dim dblc As New FarPoint.Web.Spread.DoubleCellType
dblc.DecimalDigits = 3
dblc.FixedPoint = True
dblc.ShowPopupButton = True
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = dblc
FpSpread1.ActiveSheetView.Cells(0, 0).Value = 435.98745
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

DoubleCellType Class
DoubleCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.