Compartilhar via


InkOverlayPaintingEventArgs.InkOverlayPaintingEventArgs Constructor

InkOverlayPaintingEventArgs.InkOverlayPaintingEventArgs Constructor

Initializes a new instance of the InkOverlayPaintingEventArgs class.

Definition

Visual Basic .NET Public Sub InkOverlayPaintingEventArgs( _
ByVal graphics As Graphics, _
ByVal clipRectangle As Rectangle, _
ByVal Allow As Boolean _
)
C# public InkOverlayPaintingEventArgs(
Graphics graphics,
Rectangle clipRectangle,
bool Allow
);
Managed C++ public: InkOverlayPaintingEventArgs(
Graphics *graphics,
Rectangle *clipRectangle,
bool *Allow
);

Parameters

graphics System.Drawing.Graphics. The Graphics Leave Site object that the InkOverlay object is rendering to.
clipRectangle System.Drawing.Rectangle. The clip Rectangle Leave Site to paint within.
Allow System.Boolean. Set to true if the paint operation should occur; otherwise false.

Remarks

graphics of type Graphics Leave Site specifies the graphic's object we are rendering to. clipRectangle of type Rectangle Leave Site specifies the clipRectangle (in pixels). Allow of type bool specifies whether Paint operatoin should be done.

See Also