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