Class
Range

Represents a rectangular range in a worksheet defined by starting and ending row and column indices.

Definition

Namespace:Telerik.Documents.AI.Tools.Core

Assembly:Telerik.Documents.AI.Tools.Core.dll

Syntax:

cs-api-definition
public class Range

Inheritance: objectRange

Constructors

Range()

Declaration

cs-api-definition
public Range()

Properties

FromColumn

Gets or sets the zero-based index of the starting column in the range.

Declaration

cs-api-definition
public int FromColumn { get; set; }

Property Value

int

FromRow

Gets or sets the zero-based index of the first row in the range.

Declaration

cs-api-definition
public int FromRow { get; set; }

Property Value

int

ToColumn

Gets or sets the zero-based, inclusive index of the ending column in the range.

Declaration

cs-api-definition
public int ToColumn { get; set; }

Property Value

int

ToRow

Gets or sets the zero-based index of the last row in the range, inclusive.

Declaration

cs-api-definition
public int ToRow { get; set; }

Property Value

int