PowerTools SPREAD for ASP.NET 8.0J
NumberFormat プロパティ (CurrencyCellType.EditModeSettings)

数値の編集書式を定義するNumberFormatInfoオブジェクトを取得または設定します。
構文
'Declaration
 
Public Property NumberFormat As NumberFormatInfo
public NumberFormatInfo NumberFormat {get; set;}
解説
EditModeプロパティが設定されている場合、ユーザーがセルを編集モードにすると、編集モードの書式を使用して値がエディタに表示されます。EditModeプロパティが設定されている場合、ユーザーがセルの編集モードを終了すると、値が表示書式に変換されます(値が有効な場合)。EditModeプロパティが設定されていない場合は、セルが更新された後に表示書式が適用されます(デフォルトの動作)。
次のサンプルコードは、編集モードの書式を設定します。
protected void Page_Load(object sender, System.EventArgs e)
{
    if (this.IsPostBack) return;
    FarPoint.Web.Spread.CurrencyCellType cct = new FarPoint.Web.Spread.CurrencyCellType();
    cct.EditMode.NumberFormat = new System.Globalization.NumberFormatInfo();
    cct.EditMode.NumberFormat.CurrencySymbol = "VND";
    cct.NumberFormat = new System.Globalization.NumberFormatInfo();
    cct.NumberFormat.CurrencySymbol = "D";
    FpSpread1.Sheets[0].Columns[1].CellType = cct;
}
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    If IsPostBack Then
        Return
    End If
    
    Dim cct As New FarPoint.Web.Spread.CurrencyCellType()
    cct.EditMode.NumberFormat = New System.Globalization.NumberFormatInfo()
    cct.EditMode.NumberFormat.CurrencySymbol = "VND"
    cct.NumberFormat = New System.Globalization.NumberFormatInfo()
    cct.NumberFormat.CurrencySymbol = "D"
    FpSpread1.Sheets(0).Columns(1).CellType = cct
End Sub
参照

CurrencyCellType.EditModeSettings クラス
CurrencyCellType.EditModeSettings メンバ

 

 


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