'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;}
'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;}
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