<< Click to display table of contents >> TCustomRichViewEdit.SetCurrentBulletInfo |
Changes properties for the item at the position of caret, if this item is a bullet or hotspot.
VCL and LCL:
procedure SetCurrentBulletInfo(const AName: TRVUnicodeString;
AImageIndex: Integer; AImageList: TCustomImageList;
const ATag: TRVTag);
(changed in version 18)
FireMonkey:
procedure SetCurrentBulletInfo(const AName: TRVUnicodeString;
AImageIndex: Integer; AImageList: TCustomImageList;
const ATag: TRVTag;
AImageWidth, AImageHeight: TRVStyleLength);
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 SetCurrentItemTextW method.
AImageList – not used, reserved, set it to nil.
AImageIndex – index of image in image list. It can also be set using SetCurrentItemExtraIntPropertyEx method.
ATag – tag of the item. You can use value returned by GetCurrentBulletInfo or GetCurrentTag for this item. The tag can also be set by SetCurrentTag method.
Additional parameters for FireMonkey version:
AImageWidth, AImageHeight – the desired size of the image. The component chooses the image that fits the specified size. The image is not scaled.
Method type: editing-style.
Additional item properties are assigned by the methods SetCurrentItemExtraIntProperty and SetCurrentItemExtraStrProperty.
See also methods:
See also properties:
See also:
▪"Tags".