PowerTools SPREAD for Windows Forms 8.0J
NegativeFormat 列挙体


セル内容の負号の表示を指定します。
構文
'Declaration
 
Public Enum NegativeFormat 
   Inherits System.Enum
'使用法
 
Dim instance As NegativeFormat
public enum NegativeFormat : System.Enum 
メンバ
メンバ説明
NegativeSignAfter負号を値の後ろ(右)に表示します。例:1-
NegativeSignAfterWithSpace負号を値の後ろ(右)にスペースを空けて表示します。例:1 -
NegativeSignBefore負号を値の前(左)に表示します。例:-1
NegativeSignBeforeWithSpace負号を値の前(左)にスペースを空けて表示します。例:- 1
Parentheses[0] 値を( )で囲んで表示します。例:(1)
UseRegional[-1]Windowsの地域設定に従って値を表示します。
次のサンプルコードは、数値型セルに負の値が含まれる場合、値の前にスペースを空けて負号を表示するよう指定します。
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

参照

FarPoint.Win.Spread.CellType 名前空間

開発者ガイド

数値型セル

 

 


© 2004-2015, GrapeCity inc. All rights reserved.