Send Shape Front or Back inside the Worksheet with Golang via C++

Possible Usage Scenarios

When there are multiple shapes present in the same location, their visibility is determined by their z-order positions. Aspose.Cells provides the Shape.ToFrontOrBack() method, which changes the z-order position of the shape. If you want to send a shape to the back, you will use a negative number like -1, -2, -3, etc. If you want to bring a shape to the front, you will use a positive number like 1, 2, 3, etc.

Send Shape Front or Back inside the Worksheet

The following sample code demonstrates the usage of the Shape.ToFrontOrBack() method. Please see the sample Excel file used in the code and the output Excel file generated by it. The screenshot shows the effect of the code on the sample Excel file upon execution.

todo:image_alt_text

Sample Code