'Declaration Public Overrides Property ShowPopupButton As Boolean
'Usage Dim instance As PercentCellType 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 PercentCellType Dim value As Boolean instance.ShowPopupButton = value value = instance.ShowPopupButton
public override bool ShowPopupButton {get; set;}
FarPoint.Web.Spread.PercentCellType pctcell = new FarPoint.Web.Spread.PercentCellType(); pctcell.ShowPopupButton = true; FpSpread1.ActiveSheetView.Cells[0, 1].CellType = pctcell; FpSpread1.ActiveSheetView.Cells[0, 1].Value = 0.01;
Dim pctcell As New FarPoint.Web.Spread.PercentCellType() pctcell.ShowPopupButton = True FpSpread1.ActiveSheetView.Cells(0, 1).CellType = pctcell FpSpread1.ActiveSheetView.Cells(0, 1).Value = 0.01