FlippedMode
The Bitmap will be drawn flipped in the specified way. The mode should be one of these: HORIZONTAL, VERTICAL or BOTH. Note that the flipping occurs after the other RenderModes have taken effect regardless of its position in a RenderMode list. Examples Bitmap bmp( ... );
// Draw the bitmap horizontally flipped // bmp.Blit( 200.0, 100.0, FlippedMode( HORIZONTAL )); |