Value property

Examples


The Value property specifies the value of a property object.

Syntax

DUOSProperty.Value [= string_value]

Parameters

DUOSProperty – A property object within a properties collection.

string_value – A string that specifies the value of a property object.

Comments

When you set the value of a property object using the Value property, you cannot exceed 132 characters. The DUOS stores and returns property values as strings.

The Value property is the default member of the DUOSProperty object. If you omit the Value property from your VBA code, the object assumes you’re returning the value of the specified property object. The following example includes the Value property:

ItemProperty.Value = "Red"

This example omits the Value property:

ItemProperty = "Red"


Documentation Feedback