目錄 / Table of Contents

Class OdfDdeLinkInfo

Namespace
OdfKit.Spreadsheet
Assembly
OdfKit.dll

Represents read-only summary information for a spreadsheet DDE link. 表示試算表 DDE 連結的唯讀摘要資訊。

public sealed class OdfDdeLinkInfo
Inheritance
OdfDdeLinkInfo
Inherited Members

Constructors

OdfDdeLinkInfo(string?, string?, string?, string?, string?, bool?, bool, string?)

Represents read-only summary information for a spreadsheet DDE link. 表示試算表 DDE 連結的唯讀摘要資訊。

public OdfDdeLinkInfo(string? application, string? topic, string? item, string? name, string? conversionMode, bool? automaticUpdate, bool hasCachedTable, string? cachedTableName)

Parameters

application string

The DDE application or service name. / DDE 應用程式或服務名稱。

topic string

The DDE topic, commonly a source file or document. / DDE 主題,通常為來源檔案或文件。

item string

The DDE item, such as a source range or object name. / DDE 項目,例如來源範圍或物件名稱。

name string

The optional ODF DDE source name. / 選用的 ODF DDE 來源名稱。

conversionMode string

The optional ODF conversion mode. / 選用的 ODF 轉換模式。

automaticUpdate bool?

The optional automatic-update setting, or null when unspecified. / 選用的自動更新設定;未指定時為 null

hasCachedTable bool

Whether the link contains the table that stores data from the last connection. / 連結是否包含儲存上次連線資料的表格。

cachedTableName string

The optional name of the cached table. / 快取表格的選用名稱。

Properties

Application

Gets the DDE application or service name. 取得 DDE 應用程式或服務名稱。

public string? Application { get; }

Property Value

string

AutomaticUpdate

Gets the optional automatic-update setting, or null when unspecified. 取得選用的自動更新設定;未指定時為 null

public bool? AutomaticUpdate { get; }

Property Value

bool?

CachedTableName

Gets the optional name of the cached table. 取得快取表格的選用名稱。

public string? CachedTableName { get; }

Property Value

string

ConversionMode

Gets the optional ODF conversion mode. 取得選用的 ODF 轉換模式。

public string? ConversionMode { get; }

Property Value

string

HasCachedTable

Gets whether the link contains the table that stores data from the last connection. 取得連結是否包含儲存上次連線資料的表格。

public bool HasCachedTable { get; }

Property Value

bool

Item

Gets the DDE item, such as a source range or object name. 取得 DDE 項目,例如來源範圍或物件名稱。

public string? Item { get; }

Property Value

string

Name

Gets the optional ODF DDE source name. 取得選用的 ODF DDE 來源名稱。

public string? Name { get; }

Property Value

string

Topic

Gets the DDE topic, commonly a source file or document. 取得 DDE 主題,通常為來源檔案或文件。

public string? Topic { get; }

Property Value

string