FlipImageVertical() public method

public FlipImageVertical ( ) : void
return void
コード例 #1
0
ファイル: ImageActions.cs プロジェクト: ywscr/Pinta
		private void HandlePintaCoreActionsImageFlipVerticalActivated (object sender, EventArgs e)
		{
			Document doc = PintaCore.Workspace.ActiveDocument;

			PintaCore.Tools.Commit ();
			doc.FlipImageVertical ();

			doc.History.PushNewItem (new InvertHistoryItem (InvertType.FlipVertical));
		}