Returns the library-specific string name, specifically "D3 Windows Class Library*".
sValue = object.brDescription
Parameter | Description |
---|---|
sValue | The return value is a String data type specifying the library name. |
object | An object variable that represents a clsD3Environment object. |
Sub Main() Set oEnv = New clsD3Environment ' Using text boxes. txtVersion.Text = oEnv.brVersion txtCopyright.Text = oEnv.brCopyright txtDescription.Text = oEnv.brDescription Set oEnv = Nothing End Sub