InlineImageProperties.CopyFrom(InlineImage) Method
Duplicates the properties of the specified inline image into the current instance of the InlineImageProperties class.
Namespace: DevExpress.Blazor.RichEdit
Assembly: DevExpress.Blazor.RichEdit.v24.2.dll
NuGet Package: DevExpress.Blazor.RichEdit
Declaration
public void CopyFrom(
InlineImage inlineImage
)
Parameters
Name | Type | Description |
---|---|---|
inlineImage | InlineImage | The source inline image. |
Remarks
The CopyFrom
method duplicates the properties of the specified InlineImage object into the instance of the InlineImageProperties class that this method is called from.
Send the result InlineImageProperties object to the ChangePropertiesAsync method as a parameter to copy all properties of an inline image to another image.
<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);
IReadOnlyList<InlineImage> inlineImages = await documentAPI.InlineImages.GetAllAsync();
for (int i = 1; i < inlineImages.Count; i++)
await inlineImages[i].ChangePropertiesAsync(properties => {
properties.CopyFrom(firstInlineImage);
});
}
catch (OperationCanceledException e) {
Console.WriteLine($"{nameof(OperationCanceledException)} thrown with message: {e.Message}");
}
}
See Also