Exemplo n.º 1
0
 /// <summary>
 /// Pushes a clip rectange.
 /// </summary>
 /// <param name="clip">The clip rectangle.</param>
 /// <returns>A disposable used to undo the clip rectangle.</returns>
 public PushedState PushClip(Rect clip)
 {
     PlatformImpl.PushClip(clip);
     return(new PushedState(this, PushedState.PushedStateType.Clip));
 }