Share via


CGPDFScanner.TryPop Method

Definition

Overloads

Name Description
TryPop(String)

Pops a String object from the stack of this CGPDFScanner object, returns that object by using the value parameter, and then returns whether this method succeeded.

TryPop(NFloat)
TryPop(IntPtr)
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.

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.

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.

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.

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.

TryPop(String)

Pops a 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 : string -> bool

Parameters

value
String

Returns

Applies to

TryPop(NFloat)

public bool TryPop(out System.Runtime.InteropServices.NFloat value);
member this.TryPop : NFloat -> bool

Parameters

value
NFloat

Returns

Applies to

TryPop(IntPtr)

public bool TryPop(out IntPtr value);
member this.TryPop : nativeint -> bool

Parameters

value
IntPtr

nativeint

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 -> bool

Parameters

value
Boolean

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 : CGPDFDictionary -> bool

Parameters

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 : CGPDFObject -> bool

Parameters

value
CGPDFObject

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 : CGPDFArray -> bool

Parameters

value
CGPDFArray

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 : CGPDFStream -> bool

Parameters

value
CGPDFStream

Returns

Applies to