RC-WinTrans Object Model Help |
TextTableView.HasMarker |
Returns whether the entry with the given index has a marker or not.
Syntax: |
HasMarker( Index As Long, Column As RWTMarkerColumns ) As Boolean |
Return: | Boolean |
Parameters: |
Index Index of the entry to be checked for a marker. Column Column to be checked for a marker.
|
Example: | Dim View As TextTableView Dim Markers As Boolean Dim RetVal As Boolean Set View = Application.ActiveProject.ProjectDocument.TextTableView If (View.MarkersAvailable) Then Call View.RemoveAllMarkers Else RetVal = View.SetMarker(1, column_source, True) If (Not (View.HasMarker(1, column_source))) Then MsgBox "No success !" End If End If |
See also: