CGPDFArray.GetStream Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetStream(Int32, CGPDFStream) |
Returns the PDF element in the array at the specified index. |
GetStream(nint, CGPDFStream) |
GetStream(Int32, CGPDFStream)
Returns the PDF element in the array at the specified index.
public bool GetStream (int idx, out CoreGraphics.CGPDFStream result);
member this.GetStream : int * -> bool
Parameters
- idx
- Int32
Index for the element we want to access.
- result
- CGPDFStream
If the element at position idx is a PDF stream, this will contain the resulting stream.
Returns
True if the element at the given position is of the specified type and the result is set on the out parameter; False if you tried to access an out of bounds element, or if the element at that position is of a different type.
Applies to
GetStream(nint, CGPDFStream)
public bool GetStream (nint idx, out CoreGraphics.CGPDFStream result);
member this.GetStream : nint * -> bool
Parameters
- idx
- System.System.IntPtr System.nativeint
- result
- CGPDFStream