'Declaration
Public Function GetPageLabelsRange( _ ByVal LabelingRangeIdx As Integer, _ ByRef StartPage As Integer, _ ByRef Style As PdfPageLabelStyle, _ ByRef Prefix As String, _ ByRef NumPortion As Integer _ ) As GdPictureStatus
public GdPictureStatus GetPageLabelsRange( int LabelingRangeIdx, ref int StartPage, ref PdfPageLabelStyle Style, ref string Prefix, ref int NumPortion )
public function GetPageLabelsRange( LabelingRangeIdx: Integer; var StartPage: Integer; var Style: PdfPageLabelStyle; var Prefix: String; var NumPortion: Integer ): GdPictureStatus;
public function GetPageLabelsRange( LabelingRangeIdx : int, StartPage : int, Style : PdfPageLabelStyle, Prefix : String, NumPortion : int ) : GdPictureStatus;
public: GdPictureStatus GetPageLabelsRange( int LabelingRangeIdx, ref int StartPage, ref PdfPageLabelStyle Style, ref string* Prefix, ref int NumPortion )
public: GdPictureStatus GetPageLabelsRange( int LabelingRangeIdx, int% StartPage, PdfPageLabelStyle% Style, String^% Prefix, int% NumPortion )
Parameters
- LabelingRangeIdx
- The index of the required labeling range. It must be a value from 0 to GdPicturePDF.GetPageLabelsRangeCount-1.
- StartPage
- Output parameter. The page number of the starting page of the specified labeling range.
- Style
- Output parameter. The page labeling style of the specified labeling range. A member of the PdfPageLabelStyle enumeration.
- Prefix
- Output parameter. The label prefix, if any is defined, for page labels of the specified labeling range.
- NumPortion
- Output parameter. The value of the numeric portion for the first page label of the specified labeling range.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK.
We strongly recommend always checking this status first.