ASPxClientHintOptions.offset Property
Gets the offset of a hint.
Declaration
offset: number
Property Value
Type | Description |
---|---|
number | A value. |
Remarks
The offset is used to specify an offset of the hint from its target element. The offset direction depends on the ASPxClientHintOptions.position property.
ASPxClientHint.Register('.class_name', {
content: 'sample content',
title: 'sample title',
position: 'top',
showCallout: 'false',
offset: 10,
animation: 'false',
triggerAction: 'hover'
});
See Also