CGPDFScanner.TryPop 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
TryPop(String) |
Pops a T:System.String object from the stack of |
TryPop(nint) |
Pops a T:System.Int32 object from the stack of |
TryPop(nfloat) |
Pops a floating point number from the stack of |
TryPop(Boolean) |
Pops a Boolean object from the stack of |
TryPop(CGPDFArray) |
Pops an array from the stack of |
TryPop(CGPDFObject) |
Pops an object from the stack of |
TryPop(CGPDFDictionary) |
Pops a PDF dictionary from the stack of |
TryPop(CGPDFStream) |
Pops a PDF stream from the stack of |
TryPop(String)
Pops a T:System.String object from the stack of this
CGPDFScanner object, returns that object by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out string value);
member this.TryPop : -> bool
Parameters
- value
- String
Returns
Applies to
TryPop(nint)
Pops a T:System.Int32 object from the stack of this
CGPDFScanner object, returns that object by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out nint value);
member this.TryPop : -> bool
Parameters
- value
- System.System.IntPtr System.nativeint
Returns
Applies to
TryPop(nfloat)
Pops a floating point number from the stack of this
CGPDFScanner object, returns that number object by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out nfloat value);
member this.TryPop : -> bool
Parameters
- value
- nfloat
Returns
Applies to
TryPop(Boolean)
Pops a Boolean object from the stack of this
CGPDFScanner object, returns that object by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out bool value);
member this.TryPop : -> bool
Parameters
- value
- Boolean
Returns
Applies to
TryPop(CGPDFArray)
Pops an array from the stack of this
CGPDFScanner object, returns that array by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out CoreGraphics.CGPDFArray value);
member this.TryPop : -> bool
Parameters
- value
- CGPDFArray
Returns
Applies to
TryPop(CGPDFObject)
Pops an object from the stack of this
CGPDFScanner object, returns that object by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out CoreGraphics.CGPDFObject value);
member this.TryPop : -> bool
Parameters
- value
- CGPDFObject
Returns
Applies to
TryPop(CGPDFDictionary)
Pops a PDF dictionary from the stack of this
CGPDFScanner object, returns that dictionary by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out CoreGraphics.CGPDFDictionary value);
member this.TryPop : -> bool
Parameters
- value
- CGPDFDictionary
Returns
Applies to
TryPop(CGPDFStream)
Pops a PDF stream from the stack of this
CGPDFScanner object, returns that stream by using the value
parameter, and then returns whether this method succeeded.
public bool TryPop (out CoreGraphics.CGPDFStream value);
member this.TryPop : -> bool
Parameters
- value
- CGPDFStream