PowerTools ActiveReports for .NET 9.0J
OutputFormat プロパティ
使用例 

ValueプロパティをTextプロパティに格納する前に書式設定するマスク文字列を取得または設定します。
構文
'宣言
 
Public Property OutputFormat As String
public string OutputFormat {get; set;}
解説

OutputFormatプロパティの書式設定が有効になるのは、データが数値または日時(DateTime)の場合のみです。データが文字列の場合、書式設定は反映されません。

OutputFormatプロパティでアンダースコア"_"を使用すると、アンダースコアの後ろに入力した文字の分のスペースが出力できます。例えば、出力される値が負の数の時に括弧で値を囲いたい場合に、OutputFormatプロパティに「0.00_);(0.00)」のような値を設定すると、出力される正の値の右側には")"の分のスペースが出力されます。これにより、正と負の両方の値の小数点の位置を整列することができます。

使用例
private void detail_Format(object sender, System.EventArgs eArgs)
{
    this.txtShippedDate.OutputFormat = "MMMM";
    this.txtShippedDate.Value = this.txtShippedDate.Value;
}
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.txtShippedDate.OutputFormat = "MMMM"
    Me.txtShippedDate.Value = Me.txtShippedDate.Value
End Sub
Requirements

参照

関連項目

TextBox クラス
TextBox メンバ

アーキテクチャと概念

OutputFormat文字列

 

 


©2003-2015 GrapeCity inc. All rights reserved.