Class

CellRange


Description

A range of cells in a PDFTableDataSource.

Properties

Name

Type

Read-Only

Shared

EndColumn

Integer

StartColumn

Integer

Methods

Name

Parameters

Returns

Shared

Constructor

startColumn As Integer, endColumn As Integer

Property descriptions


CellRange.EndColumn

EndColumn As Integer

The number of the last column in the range.


CellRange.StartColumn

StartColumn As Integer

The number of the first column in the range.

Method descriptions


CellRange.Constructor

Constructor(startColumn As Integer, endColumn As Integer)

Creates a CellRange from the values passed.

Note

Constructors are special methods called when you create an object with the New keyword and pass in the parameters above.

Sample code

This example creates a CellRange from columns 3 to 5:

Var range As New CellRange(3, 5)

Compatibility

All projects types on all supported operating systems.