Impact Acquire SDK .NET
mvLogicGateControl Class Reference

Category that contains features to control the devices Logic Gate Control parameters. More...

Inheritance diagram for mvLogicGateControl:
[legend]

Public Member Functions

IEnumerable< TgetEnumerable< T > ()
 Returns an enumerator of a certain type that iterates through the collection.
 
IEnumerator< intGetEnumerator ()
 Returns an enumerator that iterates through the collection.
 
 mvLogicGateControl (mv.impact.acquire.Device device)
 Constructs a new mv.impact.acquire.GenICam.mvLogicGateControl object.
 
 mvLogicGateControl (mv.impact.acquire.Device device, System.String settingName)
 Constructs a new mv.impact.acquire.GenICam.mvLogicGateControl object.
 
void restoreDefault ()
 Restores the default for every component of this collection.
 

Public Attributes

readonly mv.impact.acquire.PropertyIBoolean mvANDSource1Inverter = new mv.impact.acquire.PropertyIBoolean()
 A boolean property. Inverts the first input signal of the AND gate selected by mvLogicGateANDSelector.
 
readonly mv.impact.acquire.PropertyIBoolean mvANDSource2Inverter = new mv.impact.acquire.PropertyIBoolean()
 A boolean property. Inverts the second input signal of the AND gate selected by mvLogicGateANDSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateANDSelector = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the AND gate to configure.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateANDSource1 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the first input signal of the AND gate selected by mvLogicGateANDSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateANDSource2 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the second input signal of the AND gate selected by mvLogicGateANDSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateANDTermSelector = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the AND-term of the AND-OR-matrix.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateANDTermSrc0 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the first input signal of the AND-term selected by mvLogicGateANDTermSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateANDTermSrc1 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the second input signal of the AND-term selected by mvLogicGateANDTermSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORSelector = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the OR gate to configure.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORSource1 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the first input signal of the OR gate selected by mvLogicGateORSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORSource2 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the second input signal of the OR gate selected by mvLogicGateORSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORSource3 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the third input signal of the OR gate selected by mvLogicGateORSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORSource4 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the fourth input signal of the OR gate selected by mvLogicGateORSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORTermSelector = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the OR-term of the AND-OR-matrix.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORTermSrc0 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the first input signal of the ORTerm selected by mvLogicGateORTermSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateORTermSrc1 = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the second input signal of the ORTerm selected by mvLogicGateORTermSelector.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateSource = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the input signal of the AND-OR-Matrix selected by mvLogicGateSourceSelector.
 
readonly mv.impact.acquire.PropertyIBoolean mvLogicGateSourceInverter = new mv.impact.acquire.PropertyIBoolean()
 A boolean property. Inverts the input signal.
 
readonly mv.impact.acquire.PropertyI64 mvLogicGateSourceSelector = new mv.impact.acquire.PropertyI64()
 An enumerated integer property. Selects the LogicGateSource of the AND-OR-Matrix.
 

Properties

IEnumerable< ComponentcomponentEnumerable [get]
 Returns an enumerator that iterates through the collection.
 
IEnumerable< ComponentListcomponentListEnumerable [get]
 Returns an enumerator that iterates through all the mv.impact.acquire.ComponentList elements in the collection.
 
int hObj [get]
 Returns a unique identifier for the component collection referenced by this object.
 

Detailed Description

Category that contains features to control the devices Logic Gate Control parameters.

A category that contains features to control the devices Logic Gate Control parameters.

Constructor & Destructor Documentation

◆ mvLogicGateControl() [1/2]

Constructs a new mv.impact.acquire.GenICam.mvLogicGateControl object.

Parameters
[in]deviceA pointer to a mv.impact.acquire.Device object obtained from a mv.impact.acquire.DeviceManager object.

◆ mvLogicGateControl() [2/2]

mvLogicGateControl ( mv::impact::acquire::Device device,
System::String settingName )
inline

Constructs a new mv.impact.acquire.GenICam.mvLogicGateControl object.

Parameters
[in]deviceA pointer to a mv.impact.acquire.Device object obtained from a mv.impact.acquire.DeviceManager object.
[in]settingNameThe name of the driver internal setting to access with this instance. A list of valid setting names can be obtained by a call to mv.impact.acquire.FunctionInterface.availableSettings, new settings can be created with the function mv.impact.acquire.FunctionInterface.createSetting

Member Function Documentation

◆ getEnumerable< T >()

IEnumerable< T > getEnumerable< T > ( )
inlineinherited

Returns an enumerator of a certain type that iterates through the collection.

This interface will allow to e.g. write code like this:

Info info = new Info(pDev);
foreach (Property c in info.getEnumerable<Property>())
{
}
A template class to represent 32 bit integer properties and 32 bit enumerated integer properties.
Definition EnumPropertyI.cs:61
A class to query various general information about the device, its driver and other information.
Definition Info.cs:10
A base class for properties.
Definition Property.cs:109

See the frameworks documentation about the System.Collections.IEnumerable interface for more information.

Returns
An enumerator that iterates through the collection

◆ GetEnumerator()

IEnumerator< int > GetEnumerator ( )
inlineinherited

Returns an enumerator that iterates through the collection.

See the frameworks documentation about the System.Collections.IEnumerable interface for more information.

Returns
An enumerator that iterates through the collection

◆ restoreDefault()

void restoreDefault ( )
inlineinherited

Restores the default for every component of this collection.

Calling this function will restore the default value for every component belonging to this collection.

Note
The caller must have the right to modify the component. Otherwise an exception will be thrown.

Member Data Documentation

◆ mvANDSource1Inverter

A boolean property. Inverts the first input signal of the AND gate selected by mvLogicGateANDSelector.

Inverts the first input signal of the AND gate selected by mvLogicGateANDSelector

◆ mvANDSource2Inverter

A boolean property. Inverts the second input signal of the AND gate selected by mvLogicGateANDSelector.

Inverts the second input signal of the AND gate selected by mvLogicGateANDSelector

◆ mvLogicGateANDSelector

An enumerated integer property. Selects the AND gate to configure.

This enumeration selects the AND gate to configure.

The following string values might be valid for this feature:

  • mvLogicGateAND1 (Display string: 'mv Logic Gate AND 1')
  • mvLogicGateAND2 (Display string: 'mv Logic Gate AND 2')
  • mvLogicGateAND3 (Display string: 'mv Logic Gate AND 3')
  • mvLogicGateAND4 (Display string: 'mv Logic Gate AND 4')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateANDSource1

An enumerated integer property. Selects the first input signal of the AND gate selected by mvLogicGateANDSelector.

This enumeration can be used to select the first input signal of the AND gate selected by mvLogicGateANDSelector.

The following string values might be valid for this feature:

  • Off (Display string: 'Off')
  • Line4 (Display string: 'Line 4')
  • Line5 (Display string: 'Line 5')
  • Line6 (Display string: 'Line 6')
  • Line7 (Display string: 'Line 7')
  • Line12 (Display string: 'Line 12')
  • Line13 (Display string: 'Line 13')
  • Line14 (Display string: 'Line 14')
  • Line15 (Display string: 'Line 15')
  • ExposureActive (Display string: 'Exposure Active')
  • mvExposureSensor2Active (Display string: 'mv Exposure Sensor 2 Active')
  • UserOutput0 (Display string: 'User Output 0')
  • UserOutput1 (Display string: 'User Output 1')
  • UserOutput2 (Display string: 'User Output 2')
  • UserOutput3 (Display string: 'User Output 3')
  • UserOutput4 (Display string: 'User Output 4')
  • UserOutput5 (Display string: 'User Output 5')
  • UserOutput6 (Display string: 'User Output 6')
  • UserOutput7 (Display string: 'User Output 7')
  • Timer1Active (Display string: 'Timer 1 Active')
  • Timer2Active (Display string: 'Timer 2 Active')
  • Timer3Active (Display string: 'Timer 3 Active')
  • Counter1Active (Display string: 'Counter 1 Active')
  • Counter2Active (Display string: 'Counter 2 Active')
  • Counter3Active (Display string: 'Counter 3 Active')
  • Counter4Active (Display string: 'Counter 4 Active')
  • Counter5Active (Display string: 'Counter 5 Active')
  • Counter6Active (Display string: 'Counter 6 Active')
  • Counter7Active (Display string: 'Counter 7 Active')
  • Counter8Active (Display string: 'Counter 8 Active')
  • AcquisitionActive (Display string: 'Acquisition Active')
  • FrameActive (Display string: 'Frame Active')
  • LineActive (Display string: 'Line Active')
  • FrameTriggerWait (Display string: 'Frame Trigger Wait')
  • mvTemperatureOutOfRange (Display string: 'mv Temperature Out Of Range')
  • mvExposureActive (Display string: 'mv Exposure Active')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateANDSource2

An enumerated integer property. Selects the second input signal of the AND gate selected by mvLogicGateANDSelector.

This enumeration can be used to select the second input signal of the AND gate selected by mvLogicGateANDSelector.

The following string values might be valid for this feature:

  • Off (Display string: 'Off')
  • Line4 (Display string: 'Line 4')
  • Line5 (Display string: 'Line 5')
  • Line6 (Display string: 'Line 6')
  • Line7 (Display string: 'Line 7')
  • Line12 (Display string: 'Line 12')
  • Line13 (Display string: 'Line 13')
  • Line14 (Display string: 'Line 14')
  • Line15 (Display string: 'Line 15')
  • ExposureActive (Display string: 'Exposure Active')
  • mvExposureSensor2Active (Display string: 'mv Exposure Sensor 2 Active')
  • UserOutput0 (Display string: 'User Output 0')
  • UserOutput1 (Display string: 'User Output 1')
  • UserOutput2 (Display string: 'User Output 2')
  • UserOutput3 (Display string: 'User Output 3')
  • UserOutput4 (Display string: 'User Output 4')
  • UserOutput5 (Display string: 'User Output 5')
  • UserOutput6 (Display string: 'User Output 6')
  • UserOutput7 (Display string: 'User Output 7')
  • Timer1Active (Display string: 'Timer 1 Active')
  • Timer2Active (Display string: 'Timer 2 Active')
  • Timer3Active (Display string: 'Timer 3 Active')
  • Counter1Active (Display string: 'Counter 1 Active')
  • Counter2Active (Display string: 'Counter 2 Active')
  • Counter3Active (Display string: 'Counter 3 Active')
  • Counter4Active (Display string: 'Counter 4 Active')
  • Counter5Active (Display string: 'Counter 5 Active')
  • Counter6Active (Display string: 'Counter 6 Active')
  • Counter7Active (Display string: 'Counter 7 Active')
  • Counter8Active (Display string: 'Counter 8 Active')
  • AcquisitionActive (Display string: 'Acquisition Active')
  • FrameActive (Display string: 'Frame Active')
  • LineActive (Display string: 'Line Active')
  • FrameTriggerWait (Display string: 'Frame Trigger Wait')
  • mvTemperatureOutOfRange (Display string: 'mv Temperature Out Of Range')
  • mvExposureActive (Display string: 'mv Exposure Active')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateANDTermSelector

An enumerated integer property. Selects the AND-term of the AND-OR-matrix.

Selects the AND-term of the AND-OR-matrix.

The following string values might be valid for this feature:

  • mvLogicGateANDTerm0 (Display string: 'mv Logic Gate AND Term 0')
  • mvLogicGateANDTerm1 (Display string: 'mv Logic Gate AND Term 1')
  • mvLogicGateANDTerm2 (Display string: 'mv Logic Gate AND Term 2')
  • mvLogicGateANDTerm3 (Display string: 'mv Logic Gate AND Term 3')
  • mvLogicGateANDTerm4 (Display string: 'mv Logic Gate AND Term 4')
  • mvLogicGateANDTerm5 (Display string: 'mv Logic Gate AND Term 5')
  • mvLogicGateANDTerm6 (Display string: 'mv Logic Gate AND Term 6')
  • mvLogicGateANDTerm7 (Display string: 'mv Logic Gate AND Term 7')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateANDTermSrc0

An enumerated integer property. Selects the first input signal of the AND-term selected by mvLogicGateANDTermSelector.

Selects the first input signal of the AND-term selected by mvLogicGateANDTermSelector.

The following string values might be valid for this feature:

  • Off (Display string: 'Off')
  • mvLogicGateSource0 (Display string: 'mv Logic Gate Source 0')
  • mvLogicGateSource1 (Display string: 'mv Logic Gate Source 1')
  • mvLogicGateSource2 (Display string: 'mv Logic Gate Source 2')
  • mvLogicGateSource3 (Display string: 'mv Logic Gate Source 3')
  • mvLogicGateSource4 (Display string: 'mv Logic Gate Source 4')
  • mvLogicGateSource5 (Display string: 'mv Logic Gate Source 5')
  • mvLogicGateSource6 (Display string: 'mv Logic Gate Source 6')
  • mvLogicGateSource7 (Display string: 'mv Logic Gate Source 7')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateANDTermSrc1

An enumerated integer property. Selects the second input signal of the AND-term selected by mvLogicGateANDTermSelector.

Selects the second input signal of the AND-term selected by mvLogicGateANDTermSelector.

The following string values might be valid for this feature:

  • Off (Display string: 'Off')
  • mvLogicGateSource0 (Display string: 'mv Logic Gate Source 0')
  • mvLogicGateSource1 (Display string: 'mv Logic Gate Source 1')
  • mvLogicGateSource2 (Display string: 'mv Logic Gate Source 2')
  • mvLogicGateSource3 (Display string: 'mv Logic Gate Source 3')
  • mvLogicGateSource4 (Display string: 'mv Logic Gate Source 4')
  • mvLogicGateSource5 (Display string: 'mv Logic Gate Source 5')
  • mvLogicGateSource6 (Display string: 'mv Logic Gate Source 6')
  • mvLogicGateSource7 (Display string: 'mv Logic Gate Source 7')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORSelector

An enumerated integer property. Selects the OR gate to configure.

This enumeration selects the OR gate to configure.

The following string values might be valid for this feature:

  • mvLogicGateOR1 (Display string: 'mv Logic Gate OR 1')
  • mvLogicGateOR2 (Display string: 'mv Logic Gate OR 2')
  • mvLogicGateOR3 (Display string: 'mv Logic Gate OR 3')
  • mvLogicGateOR4 (Display string: 'mv Logic Gate OR 4')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORSource1

An enumerated integer property. Selects the first input signal of the OR gate selected by mvLogicGateORSelector.

This enumeration can be used to select the first input signal of the OR gate selected by mvLogicGateORSelector.

The following string values might be valid for this feature:

  • mvLogicGateAND1Output (Display string: 'mv Logic Gate AND 1 Output')
  • mvLogicGateAND2Output (Display string: 'mv Logic Gate AND 2 Output')
  • mvLogicGateAND3Output (Display string: 'mv Logic Gate AND 3 Output')
  • mvLogicGateAND4Output (Display string: 'mv Logic Gate AND 4 Output')
  • Off (Display string: 'Off')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORSource2

An enumerated integer property. Selects the second input signal of the OR gate selected by mvLogicGateORSelector.

This enumeration can be used to select the second input signal of the OR gate selected by mvLogicGateORSelector.

The following string values might be valid for this feature:

  • mvLogicGateAND1Output (Display string: 'mv Logic Gate AND 1 Output')
  • mvLogicGateAND2Output (Display string: 'mv Logic Gate AND 2 Output')
  • mvLogicGateAND3Output (Display string: 'mv Logic Gate AND 3 Output')
  • mvLogicGateAND4Output (Display string: 'mv Logic Gate AND 4 Output')
  • Off (Display string: 'Off')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORSource3

An enumerated integer property. Selects the third input signal of the OR gate selected by mvLogicGateORSelector.

This enumeration can be used to select the third input signal of the OR gate selected by mvLogicGateORSelector.

The following string values might be valid for this feature:

  • mvLogicGateAND1Output (Display string: 'mv Logic Gate AND 1 Output')
  • mvLogicGateAND2Output (Display string: 'mv Logic Gate AND 2 Output')
  • mvLogicGateAND3Output (Display string: 'mv Logic Gate AND 3 Output')
  • mvLogicGateAND4Output (Display string: 'mv Logic Gate AND 4 Output')
  • Off (Display string: 'Off')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORSource4

An enumerated integer property. Selects the fourth input signal of the OR gate selected by mvLogicGateORSelector.

This enumeration can be used to select the fourth input signal of the OR gate selected by mvLogicGateORSelector.

The following string values might be valid for this feature:

  • mvLogicGateAND1Output (Display string: 'mv Logic Gate AND 1 Output')
  • mvLogicGateAND2Output (Display string: 'mv Logic Gate AND 2 Output')
  • mvLogicGateAND3Output (Display string: 'mv Logic Gate AND 3 Output')
  • mvLogicGateAND4Output (Display string: 'mv Logic Gate AND 4 Output')
  • Off (Display string: 'Off')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORTermSelector

An enumerated integer property. Selects the OR-term of the AND-OR-matrix.

Selects the OR-term of the AND-OR-matrix.

The following string values might be valid for this feature:

  • mvLogicGateORTerm0 (Display string: 'mv Logic Gate OR Term 0')
  • mvLogicGateORTerm1 (Display string: 'mv Logic Gate OR Term 1')
  • mvLogicGateORTerm2 (Display string: 'mv Logic Gate OR Term 2')
  • mvLogicGateORTerm3 (Display string: 'mv Logic Gate OR Term 3')
  • mvLogicGateORTerm4 (Display string: 'mv Logic Gate OR Term 4')
  • mvLogicGateORTerm5 (Display string: 'mv Logic Gate OR Term 5')
  • mvLogicGateORTerm6 (Display string: 'mv Logic Gate OR Term 6')
  • mvLogicGateORTerm7 (Display string: 'mv Logic Gate OR Term 7')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORTermSrc0

An enumerated integer property. Selects the first input signal of the ORTerm selected by mvLogicGateORTermSelector.

Selects the first input signal of the ORTerm selected by mvLogicGateORTermSelector.

The following string values might be valid for this feature:

  • Off (Display string: 'Off')
  • mvLogicGateANDTerm0 (Display string: 'mv Logic Gate AND Term 0')
  • mvLogicGateANDTerm1 (Display string: 'mv Logic Gate AND Term 1')
  • mvLogicGateANDTerm2 (Display string: 'mv Logic Gate AND Term 2')
  • mvLogicGateANDTerm3 (Display string: 'mv Logic Gate AND Term 3')
  • mvLogicGateANDTerm4 (Display string: 'mv Logic Gate AND Term 4')
  • mvLogicGateANDTerm5 (Display string: 'mv Logic Gate AND Term 5')
  • mvLogicGateANDTerm6 (Display string: 'mv Logic Gate AND Term 6')
  • mvLogicGateANDTerm7 (Display string: 'mv Logic Gate AND Term 7')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateORTermSrc1

An enumerated integer property. Selects the second input signal of the ORTerm selected by mvLogicGateORTermSelector.

Selects the second input signal of the ORTerm selected by mvLogicGateORTermSelector.

The following string values might be valid for this feature:

  • Off (Display string: 'Off')
  • mvLogicGateANDTerm0 (Display string: 'mv Logic Gate AND Term 0')
  • mvLogicGateANDTerm1 (Display string: 'mv Logic Gate AND Term 1')
  • mvLogicGateANDTerm2 (Display string: 'mv Logic Gate AND Term 2')
  • mvLogicGateANDTerm3 (Display string: 'mv Logic Gate AND Term 3')
  • mvLogicGateANDTerm4 (Display string: 'mv Logic Gate AND Term 4')
  • mvLogicGateANDTerm5 (Display string: 'mv Logic Gate AND Term 5')
  • mvLogicGateANDTerm6 (Display string: 'mv Logic Gate AND Term 6')
  • mvLogicGateANDTerm7 (Display string: 'mv Logic Gate AND Term 7')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateSource

An enumerated integer property. Selects the input signal of the AND-OR-Matrix selected by mvLogicGateSourceSelector.

Selects the input signal of the AND-OR-Matrix selected by mvLogicGateSourceSelector.

The following string values might be valid for this feature:

  • Off (Display string: 'Off')
  • Line4 (Display string: 'Line 4')
  • Line5 (Display string: 'Line 5')
  • Line6 (Display string: 'Line 6')
  • Line7 (Display string: 'Line 7')
  • ExposureActive (Display string: 'Exposure Active')
  • mvExposureSensor2Active (Display string: 'mv Exposure Sensor 2 Active')
  • UserOutput0 (Display string: 'User Output 0')
  • UserOutput1 (Display string: 'User Output 1')
  • UserOutput2 (Display string: 'User Output 2')
  • UserOutput3 (Display string: 'User Output 3')
  • UserOutput4 (Display string: 'User Output 4')
  • UserOutput5 (Display string: 'User Output 5')
  • UserOutput6 (Display string: 'User Output 6')
  • UserOutput7 (Display string: 'User Output 7')
  • Timer1Active (Display string: 'Timer 1 Active')
  • Timer2Active (Display string: 'Timer 2 Active')
  • Timer3Active (Display string: 'Timer 3 Active')
  • Counter1Active (Display string: 'Counter 1 Active')
  • Counter2Active (Display string: 'Counter 2 Active')
  • Counter3Active (Display string: 'Counter 3 Active')
  • Counter4Active (Display string: 'Counter 4 Active')
  • Counter5Active (Display string: 'Counter 5 Active')
  • Counter6Active (Display string: 'Counter 6 Active')
  • Counter7Active (Display string: 'Counter 7 Active')
  • Counter8Active (Display string: 'Counter 8 Active')
  • AcquisitionActive (Display string: 'Acquisition Active')
  • FrameActive (Display string: 'Frame Active')
  • LineActive (Display string: 'Line Active')
  • FrameTriggerWait (Display string: 'Frame Trigger Wait')
  • mvTemperatureOutOfRange (Display string: 'mv Temperature Out Of Range')
  • mvExposureActive (Display string: 'mv Exposure Active')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

◆ mvLogicGateSourceInverter

A boolean property. Inverts the input signal.

Inverts the input signal.

◆ mvLogicGateSourceSelector

An enumerated integer property. Selects the LogicGateSource of the AND-OR-Matrix.

Selects the LogicGateSource of the AND-OR-Matrix.

The following string values might be valid for this feature:

  • mvLogicGateSource0 (Display string: 'mv Logic Gate Source 0')
  • mvLogicGateSource1 (Display string: 'mv Logic Gate Source 1')
  • mvLogicGateSource2 (Display string: 'mv Logic Gate Source 2')
  • mvLogicGateSource3 (Display string: 'mv Logic Gate Source 3')
  • mvLogicGateSource4 (Display string: 'mv Logic Gate Source 4')
  • mvLogicGateSource5 (Display string: 'mv Logic Gate Source 5')
  • mvLogicGateSource6 (Display string: 'mv Logic Gate Source 6')
  • mvLogicGateSource7 (Display string: 'mv Logic Gate Source 7')
Note
Depending on the device some of these values might not be supported and especially when working with third party devices there might be custom values which are not listed here. To get a complete and reliable list of supported values at runtime an application should therefore call mv.impact.acquire.EnumPropertyI<T>.listOfValidStrings() or one of the other functions dealing with translation dictionaries for enumerated properties.

Property Documentation

◆ componentEnumerable

IEnumerable<Component> componentEnumerable
getinherited

Returns an enumerator that iterates through the collection.

This interface will allow to e.g. write code like this:

Info info = new Info(pDev);
foreach (Component c in info.componentEnumerable)
{
Console.WriteLine("{0}", c.name);
}
String name
Returns the name of the component referenced by this object.
Definition ComponentAccess.cs:167
A base class to implement access to internal driver components.
Definition Component.cs:133

See the frameworks documentation about the System.Collections.IEnumerable interface for more information.

Returns
An enumerator that iterates through the collection

◆ componentListEnumerable

IEnumerable<ComponentList> componentListEnumerable
getinherited

Returns an enumerator that iterates through all the mv.impact.acquire.ComponentList elements in the collection.

This interface will allow to e.g. write code like this:

Info info = new Info(pDev);
foreach (ComponentList cl in info.componentListEnumerable)
{
Console.WriteLine("{0}", cl.name);
}
A class to provide access to component lists.
Definition ComponentList.cs:14

See the frameworks documentation about the System.Collections.IEnumerable interface for more information.

Returns
An enumerator that iterates through the collection

◆ hObj

int hObj
getinherited

Returns a unique identifier for the component collection referenced by this object.

This handle will always reference an object of type mv.impact.acquire.ComponentList.

Returns
A unique identifier for the component referenced by this object.