'Declaration Public Property FixedPoint As Boolean
'Usage Dim instance As DoubleCellType Dim value As Boolean instance.FixedPoint = value value = instance.FixedPoint
public bool FixedPoint {get; set;}
'Declaration Public Property FixedPoint As Boolean
'Usage Dim instance As DoubleCellType Dim value As Boolean instance.FixedPoint = value value = instance.FixedPoint
public bool FixedPoint {get; set;}
FarPoint.Web.Spread.DoubleCellType dblc = new FarPoint.Web.Spread.DoubleCellType(); dblc.DecimalDigits = 3; dblc.FixedPoint = 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 FpSpread1.ActiveSheetView.Cells(0, 0).CellType = dblc FpSpread1.ActiveSheetView.Cells(0, 0).Value = 435.98745