FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > NumberCellType Class : LeadingZero Property |
'Declaration Public Property LeadingZero As LeadingZero
'Usage Dim instance As NumberCellType Dim value As LeadingZero instance.LeadingZero = value value = instance.LeadingZero
public LeadingZero LeadingZero {get; set;}
FarPoint.Win.Spread.CellType.NumberCellType num = new FarPoint.Win.Spread.CellType.NumberCellType(); num.DecimalPlaces = 3; num.DecimalSeparator = ","; num.FixedPoint = true; num.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.UseRegional; num.MaximumValue = 50000.0; num.MinimumValue = -1000.0; num.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.Parentheses; num.NegativeRed = true; num.Separator = "/"; num.ShowSeparator = true; num.SpinButton = true; num.SpinDecimalIncrement = 10; num.SpinIntegerIncrement = 5; num.SpinWrap = true; fpSpread1.ActiveSheet.Cells[0, 0].CellType = num; fpSpread1.ActiveSheet.Cells[0, 0].Value = -443.0908;
Dim num As New FarPoint.Win.Spread.CellType.NumberCellType() num.DecimalPlaces = 3 num.DecimalSeparator = "," num.FixedPoint = True num.LeadingZero = FarPoint.Win.Spread.CellType.LeadingZero.UseRegional num.MaximumValue = 50000.0 num.MinimumValue = -1000.0 num.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.Parentheses num.NegativeRed = True num.Separator = "/" num.ShowSeparator = True num.SpinButton = True num.SpinDecimalIncrement = 10 num.SpinIntegerIncrement = 5 num.SpinWrap = True FpSpread1.ActiveSheet.Cells(0, 0).CellType = num FpSpread1.ActiveSheet.Cells(0, 0).Value = 443.9098
Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8