selector
[ Function ]
public selector(): string;
Returns the CSS selector used to create the animation.
Parameter
Name | Type | Description |
---|---|---|
- | - | - |
Return value
Type | Description |
---|---|
The CSS selector used to create the animation. |
Sample - JavaScript
var animation = new TcHmi.Animation('TcHmiDatagrid', 'td.focused');
var selector = animation.selector(); // 'td.focused'
Available from 1.8 |