|
TCustomRichViewEdit.SetCurrentBulletInfo |
Top Previous Next |
|
Changes properties for the item at the position of caret, if this item is a bullet or hotspot. procedure SetCurrentBulletInfo(const AName: String; AImageIndex: Integer; AImageList: TCustomImageList; ATag: Integer); SetCurrentBulletInfo(...) is equivalent to TopLevelEditor.SetBulletInfoEd(TopLevelEditor.CurItemNo, ...). This method can be used if CurItemStyle returns rvsBullet or rvsHotspot. Parameters: AName – name of bullet, any string without line break (CR, LF) characters. It can also be set using SetCurrentItemText method. AImageList – not used, reserved, set it to nil. AImageIndex – index of image in image list. ATag – tag of the item.If tags are pointers to dynamically allocated strings (rvoTagsArePChars in Options), this parameter must be set to value returned by StrNew of StrAlloc functions, typecasted to integer. You can use value returned by GetCurrentBulletInfo or GetCurrentTag for this item. The tag can also be set by SetCurrentTag method.
Method type: Additional item properties are assigned by the methods SetCurrentItemExtraIntProperty and SetCurrentItemExtraStrProperty.
See also methods: See also properties: See also:
|