DynamicField.DataFormatString 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定字串,這個字串指定資料欄位值的顯示格式。
public:
property System::String ^ DataFormatString { System::String ^ get(); void set(System::String ^ value); };
public string DataFormatString { get; set; }
member this.DataFormatString : string with get, set
Public Property DataFormatString As String
屬性值
格式化字串,指定資料欄位值的顯示格式。 預設為空字串 (""),表示該值未套用任何特殊格式。
備註
DataFormatString使用 屬性來指定 物件中所 DynamicField 顯示值的自訂顯示格式。 DataFormatString如果未設定屬性,則會顯示域值,而不需任何特殊格式設定。
根據預設,只有當包含 DynamicField 物件的資料繫結控制項處於唯讀模式時,才會將格式化字串套用至域值。 若要在編輯模式中將格式化字串套用至域值,請將 ApplyFormatInEditMode 屬性設定為 true
。
您使用 DataFormatString 屬性指定的顯示格式是類別的 DynamicField 這個實例特有的。 您也可以將 套用 DisplayFormatAttribute 至資料模型,並在建構函式中設定 DisplayFormatAttribute.DataFormatString 具名參數,以變更整個應用程式的資料欄位顯示格式。 如需詳細資訊,請參閱 ASP.NET 動態資料。