|
TCustomRichView.AddHotPicture, AddHotPictureTag |
Top Previous Next |
|
These method add picture-hyperlink (gr) with the specified Name and vertical alignment (VAlign) to the end of document. procedure AddHotPictureTag(const Name: String; gr: TGraphic; ParaNo: Integer; VAlign: TRVVAlign; Tag: Integer);
procedure AddHotPicture(const Name: String; (introduced in version 1.5) AddHotPicture provides a subset of functionality of AddHotPictureTag:
The same as AddPictureEx and AddPictureExTag, but this picture will be a hypertext link.
Parameters: Name – name of this hot-picture item, any string. Name must not contain CR and LF characters. RichView does not use Names itself, they are for you own use. This is an ANSI string, regardless of Unicode mode of text styles. gr – picture to insert. VAlign – vertical align of this picture, relative to its line, see TRVVAlign for possible values. If ParaNo=-1, the methods add the item to the end of the last paragraph. If ParaNo>=0, this item starts a new paragraph with the ParaNo-th style. (ParaNo is an index in the ParaStyles collection of the linked RVStyle component). It defines attributes for the new paragraph. Tag – tag of this hot-picture item..
Alternatives:
Methods type:
See also methods:
See also methods of TRichViewEdit: See also properties of TRVStyle: See also:
|