|
TCustomRichView.GetBulletInfo |
Top Previous Next |
|
Returns main properties of item of bullet type procedure GetBulletInfo(ItemNo: Integer; var AName: TRVAnsiString; var AImageIndex: Integer; var AImageList: TCustomImageList; var ATag: TRVTag);
Input parameter: ItemNo – index of the item. The item must be of bullet or hotspot type (rvsBullet or rvsHotspot), otherwise the method raises ERichViewError exception. Items are indexed from 0 to ItemCount-1, GetItemStyle returns type of item. Items of subdocuments (table cells) are not included in the items range of the main document; for items in cells, use Cell.GetRVData.GetBulletInfo.
Output parameters: AName – name of bullet. It can also be read using GetItemText method. AImageList – image list (a reference to image list, do not free it). AImageIndex – index in AImageList. ATag – tag of the item. Use SetItemTag or SetBulletInfo to change tag of item. This value can also be read using GetItemTag method.
Additional item properties are returned by the methods GetItemExtraIntProperty and GetItemExtraStrProperty.
See also methods: See also properties: See also: ▪Tags. |