[]
Begins rendering to a layer specified by layerName
.
That name should match the Name of an existing
OptionalContentGroup in the Groups
collection of the current document's OptionalContent.
The EndLayer() method must be called to end rendering to the specified layer.
public void BeginLayer(string layerName)
Public Sub BeginLayer(layerName As String)
Type | Name | Description |
---|---|---|
string | layerName | The name of the target layer. |
Begins rendering to the specified layer
.
That layer should already exist in the Groups
collection of the current document's OptionalContent.
The EndLayer() method must be called to end rendering to the specified layer.
public void BeginLayer(OptionalContentGroup layer)
Public Sub BeginLayer(layer As OptionalContentGroup)
Type | Name | Description |
---|---|---|
OptionalContentGroup | layer | The OptionalContentGroup that defines the target layer. |
Begins rendering to the specified layer
.
The EndLayer() method must be called to end rendering to the specified layer.
public void BeginLayer(OptionalContentMembership layer)
Public Sub BeginLayer(layer As OptionalContentMembership)
Type | Name | Description |
---|---|---|
OptionalContentMembership | layer | The OptionalContentMembership that defines the target layer. |