'宣言 Public Property Format As System.String
'使用法 Dim instance As Field Dim value As System.String instance.Format = value value = instance.Format
public System.string Format {get; set;}
'宣言 Public Property Format As System.String
'使用法 Dim instance As Field Dim value As System.String instance.Format = value value = instance.Format
public System.string Format {get; set;}
Formatプロパティを使用して、数値、日付、時刻、およびテキストを 表示および印刷する方法をカスタマイズできます。
たとえば、 Price フィールドを作成した場合に、その Formatプロパティを「Currency」に設定できます。これで、フィールド値が「4321.678」の場合は、「$4,321.68」とレンダリングされます。
Formatプロパティを使用して、数値(通貨およびパーセント値を含む)、日付、boolean 値、および文字列を書式設定できます。
この書式文字列の構文は、.NET の System.String.Format(System.String,System.Object)メソッドで使用される構文と同じです。