Range: ITabRange;
Range: Prognoz.Platform.Interop.Tab.ITabRange;
The Range property sets the range of cells for iterator.
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.
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: