ITabCellIterator.Range

Fore Syntax

Range: ITabRange;

Fore.NET Syntax

Range: Prognoz.Platform.Interop.Tab.ITabRange;

Description

The Range property sets the range of cells for iterator.

Fore Example

To execute an example create a form, given in the Fore Example for the ITabCellIterator.Next method. Locate the Button3 button on the form and add the following event handler of button click:

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    iter.Range:= tab.Cells(1,1,4,4);
End Sub Button1OnClick;

After executing the example, clicking the button determines a new range for the earlier created iterator named iter.

Fore.NET Example

To execute an example create a form, given in the Fore.NET Example for the ITabCellIterator.Next method. Locate the Button3 button on the form and add the following event handler of button click:

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Begin
     iter.Range:= tab.Cells[1,1,4,4];
End Sub;

After executing the example, clicking the button determines a new range for the earlier created iterator named iter.

See also:

ITabCellIterator