Class Range

A class representing a Range

Inheritance
System.Object
Range
Namespace: PSPDFKitFoundation
Assembly: PSPDFKitFoundation.dll
Syntax
public sealed class Range

Constructors

Range(Int32, Int32)

Constructs a Range.

Declaration
public Range(int position, int length)
Parameters
Type Name Description
System.Int32 position

The starting position of the range.

System.Int32 length

The length of the range.

Properties

Length

The length of the range.

Declaration
public int Length { get; set; }
Property Value
Type Description
System.Int32

Position

The starting position of the range.

Declaration
public int Position { get; set; }
Property Value
Type Description
System.Int32