Sets the marker or deletes it at the given position.

Syntax:

SetMarker( Column As RWTMarkerColumns, Marker As Boolean ) As Boolean
Return: Boolean
Parameters: Column Column where the marker is set.
Marker True: Marker will be set; False: Marker will be deleted.

Example:
Dim TU As TransUnit

Set TU = Application.ActiveTransUnit

If Not (TU.HasMarker(column_source)) Then
    Call TU.SetMarker(column_source, True)
End If

See also:

Class TransUnit


Last Updated: 09/14/04