# IProperty

Description:

`IProperty` represents a property.
```cpp
import "OxSvrSpt.idl"
```
Properties:
```cpp
VARIANT Value [get, set]
BSTR Name [get]
```
Documentation of Properties:

* `BSTR Name [get]`

`Name` returns the name of the property.

Parameters:

: `pVal` (VB return value) name of the property.

* `VARIANT Value [get, set]`

`Value` returns and sets the value of the property. This property is the default property of the IProperty interface.

Parameters:

: `pVal` (VB return value) value of the property.

: `Val` value of the property.
