Table of Contents

Class OdfLayerInfo

Namespace
OdfKit.Drawing
Assembly
OdfKit.dll

Represents summary information for a layer on a drawing page. 表示繪圖頁面上一個圖層的摘要資訊。

public sealed class OdfLayerInfo
Inheritance
OdfLayerInfo
Inherited Members

Constructors

OdfLayerInfo(string, string, bool, string?)

Represents summary information for a layer on a drawing page. 表示繪圖頁面上一個圖層的摘要資訊。

public OdfLayerInfo(string pageName, string name, bool isProtected, string? display)

Parameters

pageName string

The name of the drawing page. / 所在繪圖頁面名稱。

name string

The layer name. / 圖層名稱。

isProtected bool

Whether the layer is protected. / 圖層是否受保護。

display string

The raw layer display mode text (draw:display). / 圖層顯示模式原文(draw:display)。

Properties

Display

Gets the raw layer display mode text. 取得圖層顯示模式原文。

public string? Display { get; }

Property Value

string

IsProtected

Gets whether the layer is protected. 取得圖層是否受保護。

public bool IsProtected { get; }

Property Value

bool

Name

Gets the layer name. 取得圖層名稱。

public string Name { get; }

Property Value

string

PageName

Gets the name of the drawing page. 取得所在繪圖頁面名稱。

public string PageName { get; }

Property Value

string