Sets or deletes the selection of the entry with the given index.

Syntax:

SetSelected( Index As Long, Selected As Boolean ) As Boolean
Return: Boolean
Parameters: Index Index of the entry to be selected.
Selected True: Selection will be selected; False: Selection will be deleted.

Example:
Dim View As TextTableView
Dim Selected As Boolean

Set View = Application.ActiveProject.ProjectDocument.TextTableView

Selected = View.SetSelected(2, True)

See also:

Class TextTableView


Last Updated: 04/27/05