Class PvGenBoolean
GenICam feature: Boolean. A feature which can either be true or false.
Implements
Inherited Members
Namespace: eBUSDotNet
Assembly: eBUSDotNet.dll
Syntax
public class PvGenBoolean : PvGenParameter, IDisposable
Remarks
To use this class, see PvGenParameter. In group GenICam features.
Methods
View SourceDispose(bool)
Declaration
protected override void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing |
Overrides
View SourceGetValue(out bool)
Get the feature's value.
Declaration
public PvResult GetValue(out bool aValue)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | aValue | The feature's value. |
Returns
| Type | Description |
|---|---|
| PvResult | See #SetValue. |
SetValue(bool)
Set the feature's value.
Declaration
public PvResult SetValue(bool aValue)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | aValue | The feature's new value. |
Returns
| Type | Description |
|---|---|
| PvResult | Includes: - #PvResult::Code::OK - #PvResult::Code::GENERIC_ERROR (Use #PvResult::GetDescription to get more information.) |