CIRCUser.changeNick Member

Syntax

object.changeNick(unicodeName);

Arguments

ArgumentSummary
unicodeName

Returns

Remarks

See Also

Source Code

function usr_changenick(unicodeName)
{
this.unicodeName = unicodeName;
this.viewName = this.unicodeName;
this.encodedName = fromUnicode(this.unicodeName, this.parent);
this.canonicalName = this.parent.toLowerCase(this.encodedName);
}