Add an Attribute of type double with a min and max to the Attribute Scope. It is recommended that any name used for these configuration properties not include spaces because certain interfaces to the properties may not work correctly.
[Visual Basic .NET] |
---|
Public Sub AddDoubleMinMaxDispatchProperty( _ ByVal DispScope As Object, _ ByVal Name As String, _ ByVal Description As String, _ ByVal PropName As String, _ ByVal MinVal As Double, _ ByVal MaxVal As Double, _ ByVal Flags As Integer _ ) |
[C#] |
---|
public void AddDoubleMinMaxDispatchProperty( Object DispScope, string Name, string Description, string PropName, double MinVal, double MaxVal, int Flags ); |
[Managed C++] |
---|
public: void AddDoubleMinMaxDispatchProperty( IUnknown ^ DispScope, String __gc ^ Name, String __gc ^ Description, String __gc ^ PropName, double MinVal, double MaxVal, int Flags ); |
- DispScope
- The attribute container (scope) where the attribute will be added.
- Name
- Name of the attribute to add, it is recommended that the name does not include spaces because certain interfaces to the properties may not work correctly.
- Description
- Description of the attribute to add.
- PropName
- Name of the property to be called to set/get the values of this attribute. The property must be of the type double.
- MinVal
- Minimum value allowed (as double).
- MaxVal
- Maximum value allowed (as double).
- Flags
- Bitwise combination of AgEAttrAddFlags flags.