OPC Studio User's Guide and Reference
HighestPercentDeadband Property (DAParameterRestrictingParameters)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.DataAccess.Optimization Namespace > DAParameterRestrictingParameters Class : HighestPercentDeadband Property
If your application specifies a percent deadband that is higher than the value of this property, the value of this property will be used instead.
Syntax
'Declaration
 
<DataMemberAttribute()>
<ValueLimitsAttribute(0, 100)>
Public Property HighestPercentDeadband As Single
'Usage
 
Dim instance As DAParameterRestrictingParameters
Dim value As Single
 
instance.HighestPercentDeadband = value
 
value = instance.HighestPercentDeadband
[DataMember()]
[ValueLimits(0, 100)]
public float HighestPercentDeadband {get; set;}
[DataMember()]
[ValueLimits(0, 100)]
public:
property float HighestPercentDeadband {
   float get();
   void set (    float value);
}

Property Value

The default value of this property is 100.

Exceptions
ExceptionDescription

The value of an argument is outside the allowable range of values as defined by the invoked method.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Remarks

The value must be greater than or equal to zero, and less than or equal to 100.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also