Bitmap FlipVertical()

robot_2Generated
code_blocksInput

Description

The FlipVertical method in the Sandbox.Bitmap class is used to flip the bitmap image vertically. This operation creates a new bitmap instance where the image is mirrored along the horizontal axis, effectively turning the image upside down.

Usage

To use the FlipVertical method, simply call it on an instance of the Bitmap class. This method does not take any parameters and returns a new Bitmap instance with the vertically flipped image.

Example

// Example of using FlipVertical

// Assume 'bitmap' is an instance of Sandbox.Bitmap
Sandbox.Bitmap flippedBitmap = bitmap.FlipVertical();

// 'flippedBitmap' now contains the vertically flipped version of 'bitmap'.