'Declaration Public Enum NegativeFormat Inherits System.Enum
'Usage Dim instance As NegativeFormat
public enum NegativeFormat : System.Enum
'Declaration Public Enum NegativeFormat Inherits System.Enum
'Usage Dim instance As NegativeFormat
public enum NegativeFormat : System.Enum
Member | Description |
---|---|
NegativeSignAfter | Displays the negative sign (to the right) after the value, as in 1- |
NegativeSignAfterWithSpace | Displays the negative sign with a space (to the right) after the value, as in 1 - |
NegativeSignBefore | Displays the negative sign (to the left) before the value, as in -1 |
NegativeSignBeforeWithSpace | Displays the negative sign with a space (to the left) before the value, as in - 1 |
Parentheses | [0] Displays the value within parentheses, as in (1) |
UseRegional | [-1] Displays the value according to the Windows regional settings |
FarPoint.Win.Spread.CellType.NumberCellType numct = new FarPoint.Win.Spread.CellType.NumberCellType();
numct.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignBeforeWithSpace;
fpSpread1.ActiveSheet.Cells[0, 0].CellType = numct;
fpSpread1.ActiveSheet.Cells[0, 0].Value = -50;
Dim numct As New FarPoint.Win.Spread.CellType.NumberCellType() numct.NegativeFormat = FarPoint.Win.Spread.CellType.NegativeFormat.NegativeSignBeforeWithSpace fpSpread1.ActiveSheet.Cells(0, 0).CellType = numct fpSpread1.ActiveSheet.Cells(0, 0).Value = -50
System.Object
System.ValueType
System.Enum
FarPoint.Win.Spread.CellType.NegativeFormat