Contents
- BringToFront
- SendToBack
- BringForward
- SendBackward
Having trouble getting help?
Contact Support
Contact Support
Z-Ordering in Xamarin Image Editor (SfImageEditor)
8 Jan 20251 minute to read
The image editor control allows to change the position of shapes/edits that are arranged over the editor. This can be achieved using the following methods:
- BringToFront
- SendToBack
- BringForward
- SendBackward
BringToFront
The BringToFront
method is used to bring the selected shapes/text to the front of a group of elements over an image.
editor.BringToFront();
SendToBack
The SendToBack
method is used to send the selected shapes/text to the back of a group of elements over an image.
editor.SendToBack();
BringForward
The BringForward
method is used to bring the selected shapes/text to one step front of a group of elements over an image.
editor.BringForward();
SendBackward
The SendBackward
method is used to send the selected shapes/text to one step backward of a group of elements over an image.
editor.SendBackward();