GrapeCity.ActiveReports.v9 アセンブリ > GrapeCity.ActiveReports.SectionReportModel 名前空間 > TextBox クラス : OutputFormat プロパティ |
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