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 object that the InkOverlay object is rendering to. clipRectangle System.Drawing.Rectangle. The clip Rectangle to paint within. Allow System.Boolean. Set to true if the paint operation should occur; otherwise false.
Remarks
graphics of type Graphics specifies the graphic's object we are rendering to. clipRectangle of type Rectangle specifies the clipRectangle (in pixels). Allow of type bool specifies whether Paint operatoin should be done.
See Also