This behaves the same as SelectCommand, except you can use this to select a block of commands. You do this by defining a start command and an end command. This selects those commands and everything in between.
Visual Basic |
---|
Public Sub selectCommands( _ ByVal StartCommand As Command, _ ByVal endCommand As Command _ ) |
- StartCommand
- This defines the first command to select.
- endCommand
- This defines the last command to select.
Note that this method cannot select the entire contents of a measured feature as the endCommand parameter. For this reason, it is recommended that you use a different feature type for the endCommand parameter.
For an example, see the UnselectAll method.