LiveCursor class 
Represents a live (shared) cursor. Applications that want to customize
the appearance of cursors on the screen should extend LiveCursor and
override its renderedElement property to return a custom HTML element.
Constructors
| Live | Initializes a new instance of  | 
Properties
| client | |
| idle | Gets the amount of time the cursor has been idle. | 
| rendered | Returns an HTML element representing the cursor. Applications
that extend  | 
| user | 
Methods
| set | Updates the position of the cursor. | 
Constructor Details
		LiveCursor(string, IUserInfo)
	  
	Initializes a new instance of LiveCursor.
new LiveCursor(clientId: string, _userInfo?: IUserInfo)Parameters
- clientId
- 
				string 
- _userInfo
- IUserInfo
Property Details
		clientId
	 
	clientId: stringProperty Value
string
		idleTime
	 
	Gets the amount of time the cursor has been idle.
number idleTimeProperty Value
number
		renderedElement
	 
	Returns an HTML element representing the cursor. Applications
that extend LiveCursor must override get renderedElement
to return a custom built HTML element.
HTMLElement renderedElementProperty Value
HTMLElement
		userInfo
	 
	
Method Details
		setPosition(IPoint)
	 
	Updates the position of the cursor.
function setPosition(position: IPoint)Parameters
- position
- IPoint
The new position of the cursor.