TCustomRichView.OnGetItemCursor

<< Click to display table of contents >>

TCustomRichView.OnGetItemCursor

Allows defining custom custom cursors for items.

type

  TRVGetItemCursorEvent = procedure (Sender: TCustomRichView;

    RVData: TCustomRVData; ItemNo: Integer;

    var Cursor: TCursor) of object;

 

property OnGetItemCursor: TRVGetItemCursorEvent;

(introduced in version 12)

This event occurs when mouse pointer moves over the item.

Input Parameters

RVData – document containing this item (RichView.RVData, or table cell, or cell inplace editor's RVData)

ItemNo – index of the item inside RVData.

Output Parameter

Cursor – cursor to display.

 

See also:

▪OnItemHint.