DeleteProperty Method
The DeleteProperty method deletes an user property.
Syntax
User.DeleteProperty(name)
|
Parameters
name |
String that specifies the name of the property. |
Return Value
Remarks
Examples
The following example creates and deletes an user property of the first user.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
users = SiteCafe.Server.Users.GetUsers(1, 10);
property = users.Item(1).CreateProperty("newProp", "value");
users.Item(1).DeleteProperty("newProp");
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top