[This is preliminary documentation and is subject to change.]
DllProperty constructor.

C# | Visual Basic | Visual C++ |
public DllProperty( string name, Type type, Object defaultValue, string category, string displayName, string description, string tags )

- name (String)
- Specifies the name of the property.
- type (Type)
- Specifies the System.Type of the property.
- defaultValue (Object)
- Specifies the default value of the property.
- category (String)
- Specifies the category of the property.
- displayName (String)
- Specifies the display name of the property.
- description (String)
- Specifies the description of the property.
- tags (String)
- Specifies comma-separated tags for special purposes. Currently supports: 1. "ReadOnly" - specifies that the property is read-only when displayed in Visual Signal. 2. "File:[fileter]" - specifies that the property is a file path, and can invoke the OpenFile dialog in Visual Signal. The filters used in OpenFile dialog can be specified using the standard .Net filter specification in [filter]. For example: "Text files (*.txt)|*.txt|All files (*.*)|*.*", or "Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*"