Table of Contents

Class OdfDatabaseReportInfo

Namespace
OdfKit.Database
Assembly
OdfKit.dll

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

public sealed class OdfDatabaseReportInfo
Inheritance
OdfDatabaseReportInfo
Inherited Members

Constructors

OdfDatabaseReportInfo(string, string?, string?, string?, bool?)

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

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

Parameters

name string

The report name (db:name). / 報表名稱(db:name)。

href string

The report 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 report resource reference path. 取得報表資源參照路徑。

public string? Href { get; }

Property Value

string

Name

Gets the report name. 取得報表名稱。

public string Name { get; }

Property Value

string

Title

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

public string? Title { get; }

Property Value

string