Merge pull request #960 from telerik/didi/rte-insert-images

update toolbar edit images descriptions
This commit is contained in:
Didi Yordanova 2021-09-14 16:19:46 +03:00 коммит произвёл GitHub
Родитель a9b3dab6ff ac2779bf9f
Коммит 15969d52e8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -16,10 +16,10 @@ From R3 2021 release of Telerik UI for Xamarin the RichTextEditor control allows
* `AddImageToolbarItem`(*RichTextEditorToolbarItem*): allows you to add an image - the RichTextEditor `PickImage` event is fired, so you can handle the logic for selecting an image.
* `EditImageToolbarItem`(*InsertImageToolbarItem*): allows you to resize the image. In addition the toolbar allows you to pick an image (the RichTextEditor.`PickImage` event is fired) if you haven't selected one. Check [Edit Image ToolbarItem]({%slug richtexteditor-insert-images%}#edit-image-toolbaritem) for more details.
* `CutToolbarItem`(*RichTextEditorToolbarItem*): allows you to cut the selected HTML/image from the clipboard.
* `CopyToolbarItem`(*RichTextEditorToolbarItem*): allows you to copy the selected HTML to the clipboard.
* `PasteHtmlToolbarItem`(*RichTextEditorToolbarItem*): allows you to paste HTML from the clipboard.
* `RemoveImageToolbarItem`(*RichTextEditorToolbarItem*): allows you to remove/delete the currently selected image.
* `CutToolbarItem`(*RichTextEditorToolbarItem*): allows you to cut the selected HTML/image to the clipboard.
* `CopyToolbarItem`(*RichTextEditorToolbarItem*): allows you to copy the selected HTML/image to the clipboard.
* `PasteHtmlToolbarItem`(*RichTextEditorToolbarItem*): allows you to paste HTML/image from the clipboard.
* `RemoveImageToolbarItem`(*RichTextEditorToolbarItem*): allows you to remove the currently selected image from the document.
You can insert images from Uri, Data(byte []), Stream, File. The image source is of type `RichTextImageSource`.