TExternalBaseDllProperty ClassVisual Signal ExternalBase Class Library Documentation
API version 1.5.2

[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

SystemObject
  VSignal.ExternalBaseTExternalBaseDllProperty

Namespace: VSignal.ExternalBase
Assembly: vsmExternalBase (in vsmExternalBase.dll) Version: 1.6.0.0
Syntax

protected class DllProperty

The TExternalBaseDllProperty type exposes the following members.

Constructors

  NameDescription
Public methodTExternalBaseDllProperty
DllProperty constructor.
Top
Methods

  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Properties

  NameDescription
Public propertyCategory
Gets the property category.
Public propertyDescription
Gets the property description.
Public propertyDisplayName
Gets the property display name.
Public propertyName
Gets the name of the property.
Public propertyOrder
Gets the property order.
Public propertyTags
Gets the property tags
Public propertyType
Gets the System.Type of the property.
Public propertyValue
Gets/Sets the current value of the property.
Top
See Also

Reference