API version 1.5.2
SystemObject
VSignal.ExternalBaseTExternalBaseDllProperty
Assembly: vsmExternalBase (in vsmExternalBase.dll) Version: 1.6.0.0
Top
Top
Top
[This is preliminary documentation and is subject to change.]
(Deprecated) DllProperty - This class represents a property used by the user DLL. The user DLL
should initialize the number of required DllProperty objects and store them in
_properties dictionary in Init using RegisterProperty().
Before DLL's computation stage, Visual Signal's ExternalDll will update the value of the
properties via setProperties(String); after DLL's computation, user DLL is responsible for
updating the property values via UpdateProperty(String, Object).
This is deprecated. It is no longer necessary to access property object directly. Define and
access the properties like any other C# property using appropriate attributes. Properties must
be public and browsable.
Inheritance Hierarchy
VSignal.ExternalBaseTExternalBaseDllProperty
Namespace: VSignal.ExternalBase
Assembly: vsmExternalBase (in vsmExternalBase.dll) Version: 1.6.0.0
Syntax
The TExternalBaseDllProperty type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| TExternalBaseDllProperty |
DllProperty constructor.
|
Methods
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| Finalize | (Inherited from Object.) | |
| GetHashCode | (Inherited from Object.) | |
| GetType | (Inherited from Object.) | |
| MemberwiseClone | (Inherited from Object.) | |
| ToString | (Inherited from Object.) |
Properties
| Name | Description | |
|---|---|---|
| Category |
Gets the property category.
| |
| Description |
Gets the property description.
| |
| DisplayName |
Gets the property display name.
| |
| Name |
Gets the name of the property.
| |
| Order |
Gets the property order.
| |
| Tags |
Gets the property tags
| |
| Type |
Gets the System.Type of the property.
| |
| Value |
Gets/Sets the current value of the property.
|
See Also