 | PdfLabelingRangesTryGetValue Method |
Gets the label associated with the specified page index.
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic bool TryGetValue(
int page,
out PdfLabel label
)
Public Function TryGetValue (
page As Integer,
<OutAttribute> ByRef label As PdfLabel
) As Boolean
public:
virtual bool TryGetValue(
int page,
[OutAttribute] PdfLabel^% label
) sealed
abstract TryGetValue :
page : int *
label : PdfLabel byref -> bool
override TryGetValue :
page : int *
label : PdfLabel byref -> bool public final boolean TryGetValue(
int page,
/** @attribute OutAttribute */ /** @ref */PdfLabel label
)
function TryGetValue(page, label);
Parameters
- page Int32
- The page index whose label to get.
- label PdfLabel
- When this method returns, the label associated with the specified page index, if the page is found; otherwise null. This parameter is passed uninitialized.
Return Value
Booleantrue if the
PdfLabelingRanges contains a label for the specified paeg; otherwise, false.
Implements
IDictionaryTKey, TValueTryGetValue(TKey, TValue)
See Also