CogToolBlockTerminal ClassCognex VisionPro 9.22 SR1
Class cooresponding to an individual ToolBlock terminal, usually a member of a ToolBlock Inputs or Outputs collection.
Inheritance Hierarchy

System Object
  System MarshalByRefObject
    Cognex.VisionPro.Implementation CogObjectBase
      Cognex.VisionPro.Implementation CogSerializableObjectBase
        Cognex.VisionPro.Implementation CogSerializableChangedEventBase
          Cognex.VisionPro.Implementation CogTrackedItemBase
            Cognex.VisionPro.ToolBlock CogToolBlockTerminal

Namespace: Cognex.VisionPro.ToolBlock
Assembly: Cognex.VisionPro (in Cognex.VisionPro.dll) Version: 87.1.0.0 (87.1.0.0)
Syntax

[SerializableAttribute]
public sealed class CogToolBlockTerminal : CogTrackedItemBase, 
	ICogTrackingCollectionTrackedItem, ICogChangedEvent

The CogToolBlockTerminal type exposes the following members.

Constructors

  NameDescription
Public methodCogToolBlockTerminal(SerializationInfo, StreamingContext)
Standard Serialization Constructor
Public methodCogToolBlockTerminal(String, Object)
Creates a new CogToolBlockTerminal with the supplied name and value.
Public methodCogToolBlockTerminal(String, Type)
Creates a new CogToolBlockTerminal with the supplied name and valueType.
Public methodCogToolBlockTerminal(String, Object, Type)
Creates a new CogToolBlockTerminal with the supplied name, value, and valueType.
Public methodCogToolBlockTerminal(String, Type, Boolean)
Creates a new CogToolBlockTerminal with the supplied name and valueType.
Top
Methods

  NameDescription
Public methodBeginForceChangedEvent
Called at the begining of a section of code that must raise a changed event containing the given state flags.
(Inherited from CogTrackedItemBase.)
Public methodCreateObjRef
Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject.)
Public methodEndForceChangedEvent
Called at the end of a section of code that must raise a changed event with the given state flags... If a changed event with these state flags has not been raised "naturally" since the coresponding call to BeginForceChangedEvents was called, this call will raise the event.
(Inherited from CogTrackedItemBase.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetLifetimeService
Retrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInitializeLifetimeService
Obtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject.)
Public methodResumeAndRaiseChangedEvent
Re-enables raising of the Changed event after SuspendChangedEvent has been called, and raises the Changed event 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 CogSerializableChangedEventBase.)
Public methodSuspendChangedEvent
Temporarily suspends the raising of the Changed event. May be called more than once, and a corresponding call to ResumeAndRaiseChangedEvent must be made for each call to SuspendChangedEvent.
(Inherited from CogSerializableChangedEventBase.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Fields

  NameDescription
Public fieldStatic memberSfDescription
Description state flag
Top
Properties

  NameDescription
Public propertyChangedEventSuspended
If nonzero, indicates that the raising of the Changed event has been suspended. This value is incremented when SuspendChangedEvent is called and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventBase.)
Public propertyDescription
A short description of this terminal
Public propertyForceChangedEvent
Gets/Sets whether a CogToolBlock containing this terminal in its Outputs collection will force a changed event with the SfValue state flag set every time the CogToolBlock is run (even if the value did not change). Use this property when linking to a CogDataAnyalysisTool to prevent the CogDataAnyalysisTool from giving a reject result due to the Data Analysis Channels not being updated.
(Inherited from CogTrackedItemBase.)
Public propertyHasChanged (Inherited from CogSerializableChangedEventBase.)
Public propertyID
Gets the ID property of the terminal
(Inherited from CogTrackedItemBase.)
Public propertyName
Gets or Sets the name of the terminal.
(Inherited from CogTrackedItemBase.)
Public propertyParent
Returns the Parent or CogTrackingCollection that is currently tracking this Item.
(Inherited from CogTrackedItemBase.)
Public propertyStateFlags
Returns the complete set of state flags supported on this object. The flags may be indexed by name as shown in the following C# code snippet: if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventBase.)
Public propertyValue
Gets or Sets the value of the terminal.
(Inherited from CogTrackedItemBase.)
Public propertyValueType
Gets the expected value type of the terminal
(Inherited from CogTrackedItemBase.)
Top
Events

  NameDescription
Public eventChanged
This event is raised when one or more parts of the object's state may have changed.
(Inherited from CogSerializableChangedEventBase.)
Public eventNameChanging
Event raised when the name of a terminal is about to change. Gives a listener an oportuity to cancel the name change.
(Inherited from CogTrackedItemBase.)
Top
Remarks

ToolBlock terminals are different from "regular" tool terminals. ToolBlock terminals are storage objects unto themselves. Regular tool terminals represent a path to an existing tool's member or property.
See Also