API Reference
Struct
PdfPageRange
Represents an inclusive one-based PDF page range.
Inheritance
- ValueType
- PdfPageRange
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property PdfBookmarkPageRange.PageRange
- Property PdfLogicalTableTextExportOptions.PageRanges
- Method PdfPageRange.From
- Method PdfPageRange.Parse
- Method PdfPageRange.ParseMany
- Property PdfPageSelection.Ranges
Accepted by parameters
- Method PdfDocumentPages.Delete
- Method PdfDocumentPages.Duplicate
- Method PdfDocumentPages.Extract
- Method PdfDocumentPages.Move
- Method PdfDocumentPages.Rotate
- Method PdfDocumentPages.Split
- Method PdfDocumentPages.TrySplit
- Method PdfImageStampOptions.UsePageRange
- Method PdfImageStampOptions.UsePageRanges
- Method PdfLogicalDocument.FromPageRanges
- Method PdfLogicalDocument.FromPageRanges
- Method PdfLogicalDocument.LoadPageRanges
- Method PdfLogicalDocument.LoadPageRanges
- Method PdfLogicalDocument.LoadPageRanges
- Method PdfLogicalDocument.LoadPageRanges
- Method PdfLogicalDocument.LoadPageRanges
- Method PdfLogicalDocument.LoadPageRanges
- Method PdfPageRange.Equals
- Method PdfPageRange.op_Equality
- Method PdfPageRange.op_Equality
- Method PdfPageRange.op_Inequality
- Method PdfPageRange.op_Inequality
- Method PdfPageRange.TryParse
- Method PdfPageRange.TryParseMany
- Method PdfPageSelection.From
- Method PdfPageSelection.FromRanges
- Method PdfTextStampOptions.UsePageRange
- Method PdfTextStampOptions.UsePageRanges
Constructors
public PdfPageRange(Int32 firstPage, Int32 lastPage) #Creates an inclusive one-based PDF page range.
Parameters
- firstPage System.Int32
- lastPage System.Int32
Methods
Equals 2 overloads
public static PdfPageRange From(Int32 firstPage, Int32 lastPage) #Returns:
PdfPageRangeCreates an inclusive one-based PDF page range.
Parameters
- firstPage System.Int32
- lastPage System.Int32
public static Boolean op_Equality(PdfPageRange left, PdfPageRange right) #Returns:
BooleanCompares two page ranges for equality.
Parameters
- left OfficeIMO.Pdf.PdfPageRange
- right OfficeIMO.Pdf.PdfPageRange
public static Boolean op_Inequality(PdfPageRange left, PdfPageRange right) #Returns:
BooleanCompares two page ranges for inequality.
Parameters
- left OfficeIMO.Pdf.PdfPageRange
- right OfficeIMO.Pdf.PdfPageRange
public static PdfPageRange Parse(String pageRange) #Returns:
PdfPageRangeParses one inclusive one-based page range from text such as 3, 1-3, or 1..3.
Parameters
- pageRange System.String
public static PdfPageRange[] ParseMany(String pageRanges) #Returns:
PdfPageRange[]Parses comma- or semicolon-separated inclusive one-based page ranges, preserving caller order.
Parameters
- pageRanges System.String
public static Boolean TryParse(String pageRange, out PdfPageRange range) #Returns:
BooleanAttempts to parse one inclusive one-based page range from text such as 3, 1-3, or 1..3.
Parameters
- pageRange System.String
- range OfficeIMO.Pdf.PdfPageRange@
public static Boolean TryParseMany(String pageRanges, out PdfPageRange[] ranges) #Returns:
BooleanAttempts to parse comma- or semicolon-separated inclusive one-based page ranges, preserving caller order.
Parameters
- pageRanges System.String
- ranges OfficeIMO.Pdf.PdfPageRange[]@