Table of Contents

Class OdfUserFieldDeclarationInfo

Namespace
OdfKit.Text
Assembly
OdfKit.dll

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

name string

The field name. / 欄位名稱。

valueType string

The value type (e.g. string, float, boolean, date, time). / 值類型(例如 stringfloatbooleandatetime)。

value string

The 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

string

Value

Gets the raw text of the field's current value. 取得欄位目前的值原文。

public string? Value { get; }

Property Value

string

ValueType

Gets the value type. 取得值類型。

public string ValueType { get; }

Property Value

string