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