Graphics.RestoreState

From Xojo Documentation

Revision as of 14:32, 31 March 2021 by Gperlman (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
You are currently browsing the old Xojo documentation site. It will go offline as of October 2, 2023. Please visit the new Xojo documentation site! - you will be redirected shortly...
Method

Graphics.RestoreState()

New in 2020r2

Supported for all project types and targets.

Restores graphics context previously saved with SaveState.

Notes

Support for RestoreState in Desktop and Console applications was added in 2021r1.

Sample Code

From within an MobileCanvas.Paint event handler:

g.DrawingColor = Color.Blue
g.FillRectangle(10, 10, 20, 20)

g.SaveState
g.DrawingColor = Color.Red
g.FillRectangle(50, 50, 20, 20)

// Restore to state where FillColor is Blue
g.RestoreState
g.FillRectangle(10, 50, 20, 20)