Table of Contents

Class OdfDatabaseFormInfo

Namespace
OdfKit.Database
Assembly
OdfKit.dll

Represents summary information for an ODB database form component. 表示 ODB 資料庫表單元件的摘要資訊。

public sealed class OdfDatabaseFormInfo
Inheritance
OdfDatabaseFormInfo
Inherited Members

Constructors

OdfDatabaseFormInfo(string, string?, string?, string?, bool?)

Represents summary information for an ODB database form component. 表示 ODB 資料庫表單元件的摘要資訊。

public OdfDatabaseFormInfo(string name, string? href, string? title, string? description, bool? asTemplate)

Parameters

name string

The form name (db:name). / 表單名稱(db:name)。

href string

The form resource reference path (xlink:href). / 表單資源參照路徑(xlink:href)。

title string

The display title. / 顯示標題。

description string

The description text. / 描述文字。

asTemplate bool?

Whether it is used as a template (db:as-template). / 是否作為範本(db:as-template)。

Properties

AsTemplate

Gets whether it is used as a template. 取得是否作為範本。

public bool? AsTemplate { get; }

Property Value

bool?

Description

Gets the description text. 取得描述文字。

public string? Description { get; }

Property Value

string

Href

Gets the form resource reference path. 取得表單資源參照路徑。

public string? Href { get; }

Property Value

string

Name

Gets the form name. 取得表單名稱。

public string Name { get; }

Property Value

string

Title

Gets the display title. 取得顯示標題。

public string? Title { get; }

Property Value

string