<< Click to display table of contents >> TCustomRichViewEdit.InsertBullet |
Inserts bullet at the position of caret.
VCL and LCL:
function InsertBullet(ImageIndex: Integer;
ImageList: TCustomImageList): Boolean;
FireMonkey:
function InsertBullet(ImageIndex: Integer;
ImageList: TCustomImageList;
ImageWidth, ImageHeight: TRVStyleLength): Boolean;
Parameters:
Name – name of bullet, any string. Name must not contain CR and LF characters. RichViewEdit does not use item names itself, they are for your own use. This is an ANSI string, regardless of Unicode mode of text styles.
ImageIndex – index of image in ImageList.
ImageList – image list for this bullet. RichView does not own, does not copy and does not destroy image lists, it just holds pointers to them. So this image list is not destroyed when the document is cleared.
Additional parameters for FireMonkey version:
ImageWidth, ImageHeight – 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 method for insertion.
Return value:
True if the insertion was successful (it can fail due to protection, or when inserting in table having multicell selection)
See also methods of TCustomRichView:
See also: