|
NoOfSendSequences |
|
|
Returns the number of Send Sequences defined in the current Docklight project.
Return Value
Integer
Syntax
result = DL.NoOfSendSequences
Remarks
The NoOfSendSequences property is very useful to create loop structures that make use of all Send Sequences available. See the example below.
Example
' Example NoOfSendSequences
' Send out all Send Sequences defined, with a 1 seconds delay ' between the individual sequences For i = 0 To (DL.NoOfSendSequences - 1) DL.SendSequence i DL.Pause 1000 Next |