Class OdfUserFieldDeclarationInfo
Represents summary information for a user field (template variable) declaration in a text document. 表示文字文件中一個使用者欄位(範本變數)宣告的摘要資訊。
public sealed class OdfUserFieldDeclarationInfo
- Inheritance
-
OdfUserFieldDeclarationInfo
- Inherited Members
Constructors
OdfUserFieldDeclarationInfo(string, string, string?)
Represents summary information for a user field (template variable) declaration in a text document. 表示文字文件中一個使用者欄位(範本變數)宣告的摘要資訊。
public OdfUserFieldDeclarationInfo(string name, string valueType, string? value)
Parameters
namestringThe field name. / 欄位名稱。
valueTypestringThe value type (e.g.
string,float,boolean,date,time). / 值類型(例如string、float、boolean、date、time)。valuestringThe raw text of the field's current value; null if not set. / 欄位目前的值原文;若未設定則為 null。
Properties
Name
Gets the field name. 取得欄位名稱。
public string Name { get; }
Property Value
Value
Gets the raw text of the field's current value. 取得欄位目前的值原文。
public string? Value { get; }
Property Value
ValueType
Gets the value type. 取得值類型。
public string ValueType { get; }