Spread for ASP.NET 10 Product Documentation
ShowPopupButton Property (IntegerCellType)
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 IntegerCellType
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.IntegerCellType intcell = new FarPoint.Web.Spread.IntegerCellType();
intcell.ShowPopupButton = true;
FpSpread1.ActiveSheetView.Cells[1, 1].CellType = intcell;
FpSpread1.ActiveSheetView.Cells[1, 1].Value = 2;
Dim intcell = New FarPoint.Web.Spread.IntegerCellType()
intcell.ShowPopupButton = True
FpSpread1.ActiveSheetView.Cells(1, 1).CellType = intcell
FpSpread1.ActiveSheetView.Cells(1, 1).Value = 2
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

IntegerCellType Class
IntegerCellType Members

 

 


Copyright © GrapeCity, inc. All rights reserved.