ImageBase<T>.Url Property
In This Article
Gets the image’s URL.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.2.dll
NuGet Package: DevExpress.Blazor.RichEdit
#Declaration
C#
public string Url { get; }
#Property Value
Type | Description |
---|---|
String | The image’s URL. |
#Remarks
The following code snippet gets an inline image‘s URL.
Razor
<DxRichEdit @ref="richEdit" />
@code {
DxRichEdit richEdit;
Document documentAPI;
/* Surround the code that contains an asynchronous operation with a try-catch block to handle
the OperationCanceledException. This exception is thrown when an asynchronous operation is canceled. */
try {
documentAPI = richEdit.DocumentAPI;
InlineImage firstInlineImage = await documentAPI.InlineImages.GetAsync(0);
string URL = firstInlineImage.Url;
}
catch (OperationCanceledException e) {
Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
}
}
See Also