Skip to main content
A newer version of this page is available. .

ASPxClientHintOptions.x Property

Gets or sets the X coordinate.

Declaration

x: number

Property Value

Type Description
number

An integer value that is 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