HostFunctionssetProperty Method (IPropertyBag, String, Object) |
Sets a property value in a dynamic host object that implements
IPropertyBag.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.3.1
Syntaxpublic Object setProperty(
IPropertyBag target,
string name,
Object value
)
Public Function setProperty (
target As IPropertyBag,
name As String,
value As Object
) As Object
public:
Object^ setProperty(
IPropertyBag^ target,
String^ name,
Object^ value
)
member setProperty :
target : IPropertyBag *
name : string *
value : Object -> Object
Parameters
- target
- Type: Microsoft.ClearScriptIPropertyBag
The dynamic host object that contains the property to set. - name
- Type: SystemString
The name of the property to set. - value
- Type: SystemObject
The new value of the specified property.
Return Value
Type:
ObjectThe result of the operation, which is usually the value assigned to the specified property.
Remarks
This function is provided for script languages that do not support dynamic properties.
See Also