ASPxClientHintOptions.x Property
Gets or sets the X coordinate.
Declaration
x: number
Property Value
Type | Description |
---|---|
number | The X coordinate. |
Remarks
To show a hint at the specified coordinates on a browser window, use the x and ASPxClientHintOptions.y properties.
ASPxClientHint.Register('.class_name', {
content: 'sample content',
triggerAction: 'hover',
x: 150,
y: 100
});
When the ASPxClientHintOptions.y and x properties are used, the ASPxClientHintOptions.position property defines the hint position relative to the specified position on the browser window.
See Also