[]
Retrieves the 3D stream content from this annotation and its format.
public Stream Get3DContent(out IPdfName format)
Public Function Get3DContent(ByRef format As IPdfName) As Stream
| Type | Name | Description |
|---|---|---|
| IPdfName | format | When this method returns, contains the IPdfName object specifying
the format of the retrieved 3D data, or |
| Type | Description |
|---|---|
| Stream | A Stream object containing the 3D model data, or |
The returned stream contains the raw 3D model data in the format specified by the format parameter.
The caller is responsible for properly disposing the stream if necessary.
Retrieves the 3D stream content from this annotation without format information.
public Stream Get3DContent()
Public Function Get3DContent() As Stream
| Type | Description |
|---|---|
| Stream | A Stream object containing the 3D model data, or |
This method is a convenience overload that retrieves the 3D content without requiring the caller to handle the format parameter. If format information is needed, use Get3DContent(out IPdfName) instead.