ITrackingCollectionTrackedItem InterfaceCognex VisionPro 9.22 SR1

Items in a tracking collection must implement this interface.

Namespace: Cognex.Vision.Implementation
Assembly: Cognex.Vision.Core.Net (in Cognex.Vision.Core.Net.dll) Version: 9.22.2.0
Syntax

public interface ITrackingCollectionTrackedItem : IChangedEvent, 
	IObject

The ITrackingCollectionTrackedItem type exposes the following members.

Methods

  NameDescription
Public methodResumeAndRaiseChangedEvent

Re-enables raising of the ChangedEvent after SuspendChangedEvent has been called, and raises the ChangedEvent if the ChangedEventSuspended count is reduced to zero and any changes were made while events were suspended. Must be called once for each call to SuspendChangedEvent.

(Inherited from IChangedEvent.)
Public methodSuspendChangedEvent

Temporarily suspends the raising of the ChangedEvent. May be called more than once, and a corresponding call to ResumeAndRaiseChangedEvent must be made for each call to SuspendChangedEvent.

(Inherited from IChangedEvent.)
Top
Properties

  NameDescription
Public propertyChangedEventSuspended

Indicates if raising the ChangedEvent has been suspended.

(Inherited from IChangedEvent.)
Public propertyID

Gets the ID of the tracked item.

Public propertyName
Get

Get the name of the tracked item.

Public propertyParent
Get

Return a reference to the containing tracking collection. May be null.

Top
Events

  NameDescription
Public eventChanged

The actual event.

(Inherited from IChangedEvent.)
Public eventNameChanging

This event is raised when the Name is about to change. Note that this is a cancellable event.

Top
See Also