HostFunctionssetProperty(IPropertyBag, String, Object) Method |
Sets a property value in a dynamic host object that implements
IPropertyBag.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public 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 IPropertyBag
- The dynamic host object that contains the property to set.
- name String
- The name of the property to set.
- value Object
- The new value of the specified property.
Return Value
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