Aspose::Cells::Drawing::Shape::ToFrontOrBack method

Shape::ToFrontOrBack method

Brings the shape to the front or sends the shape to back.

void Aspose::Cells::Drawing::Shape::ToFrontOrBack(int32_t orders)
ParameterTypeDescription
ordersint32_tIf it’s less than zero, sets the shape to back. If it’s greater than zero, brings the shape to front.

Examples

shape.ToFrontOrBack(2);
//or shape.ToFrontOrBack(-1);

See Also