DrawingThread (Object)

Represents a drawing thread in a drawing view.

Properties


Property Type() As
Returns or sets a CatThreadType (threaded or taped) on a thread. Be careful, this method is only available on threads which are linked to 2D circle geometry
Example:
The following example sets the type Taped in MyThread
  If MyThread.IsLinkedTo()=cat2DCircle Then
     MyThread.Type = catTaped
   End If
 

Methods


Func IsLinkedTo() As
Specifies which kind of objects the thread is linked to.
Returns:
oLinkedType The type of thread link
Example:
The following example retrieves the CatThreadLinkedTo in MyThread This view belongs to the drawing view collection of the drawing sheet
 ThreadLinkType = MyThread.IsLinkedTo