Merge pull request #952 from telerik/didi/fix-images

fix images add link to kb
This commit is contained in:
Lance McCarthy 2021-08-27 11:28:45 -04:00 коммит произвёл GitHub
Родитель f763f7d767 855e08b166
Коммит 678697a54b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 8 добавлений и 8 удалений

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

@ -11,8 +11,8 @@ slug: richtexteditor-images-overview
From R3 2021 release the RichTextEditor control allows you to add(insert), cut, copy, paste, resize and delete images using built-in toolbar items.
![RichTextEditor AddImage](..images/add-image-toolbar-item.png)
![RichTextEditor AddImage](..images/rte-edit-image-toolbar-items.png)
![RichTextEditor AddImage](../images/add-image-toolbar-item.png)
![RichTextEditor AddImage](../images/rte-edit-image-toolbar-items.png)
* `AddImageToolbarItem`(*RichTextEditorToolbarItem*): allows you to add images
* `EditImageToolbarItem`(*InsertImageToolbarItem*): allows you to resize the image. In addition the toolbar allows you to pick an image if you haven't selected one.
@ -49,7 +49,7 @@ Load HTML file
<snippet id='rte-insert-images-add-rte-source' />
![RichTextEditor Insert Images](..images/rte-insert-images.png)
![RichTextEditor Insert Images](../images/rte-insert-images.png)
The demo uses the Xam.Plugin.Media nuget package for all projects - .NET Standard, Android, iOS, UWP. In addition for Android Plugin.Permissions NuGet package is installed.

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

@ -16,7 +16,7 @@ In this article we will review the built-in toolbar items for imsert and edit im
Default look of the `AddImageToolbarItem`:
![RichTextEditor AddImage](images/add-image-toolbar-item.png)
![RichTextEditor AddImage](../images/add-image-toolbar-item.png)
## Built-in Toolbar Items for editing images
@ -30,7 +30,7 @@ The following Built-in Toolbar itema are displayed in the RichTextEditorToolbar
How the editing toolbar looks when image is selected:
![RichTextEditor AddImage](..images/rte-edit-image-toolbar-items.png)
![RichTextEditor AddImage](../images/rte-edit-image-toolbar-items.png)
## Edit Image ToolbarItem
@ -48,7 +48,7 @@ EditImageToolbarItem allows you to resize the image and pick an image. When tapp
* **PopupOutsideBackgroundColor**(*Color*): Defines the backgrounf color applied outside of the popup content.
* **PopupContentTemplate**(*ControlTemplate*): Defines the control template of the popup.
![RichTextEditor AddImage](..images/edit-image-popup.png)
![RichTextEditor AddImage](../images/edit-image-popup.png)
>Insert Images example can be found inside the **SDK Browser App - RichTextEditor/Features folder**
@ -56,7 +56,7 @@ EditImageToolbarItem allows you to resize the image and pick an image. When tapp
* **ImagePickerToolbarItem**(*Telerik.XamarinForms.RichTextEditor.PickerToolbarItem*): Allows you to pick an image from a collection of pre-defined images.
![RichTextEditor ImagePicker Toolbar](..images/imagepicker-toolbar-item.png)
![RichTextEditor ImagePicker Toolbar](../images/imagepicker-toolbar-item.png)
### Example

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

@ -19,7 +19,7 @@ position: 3
* **IsEnabled**(*bool*): Defines whether the TabView Item is enabled/disabled. By default `IsEnabled` is `True`.
* **IsVisible**(*bool*): Specified whether the TabView Item is visible/hidden.
>important If you want to hide the current Selected TabView Item (setting `IsVisible="False"`), and the RadTabView `IsContentPreserved` property is set to `True`, you have to programatically select the next available item(that is **visible** and **enabled**) and then hide the previously selected item.
>important If you want to hide the current Selected TabView Item (setting `IsVisible="False"`), and the RadTabView `IsContentPreserved` property is set to `True`, you have to programatically select the next available item(that is **visible** and **enabled**) and then hide the previously selected item. For more details visit the [Toggle TabView SelectedItem Visibility]({%slug tabview-hide-current-selected-item-iscontentpreserved-true%}) how-to article.
>important ToggleSelectedItemVisibility example can be found in the SDKBrowserApp/Examples/TabViewControl/FeaturesCategory