This method will be invoked after all child interactors have been painted.

Namespace: TallComponents.Interaction.WinForms.Interactors
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

C#
protected virtual void OnPaintOver(
	PaintEventArgs paintEvent
)
Visual Basic
Protected Overridable Sub OnPaintOver ( _
	paintEvent As PaintEventArgs _
)

Parameters

paintEvent
Type: TallComponents.Interaction.WinForms.Events..::..PaintEventArgs
The paint event data.

Remarks

Unlike the OnPaint method, OnPaintOver does not run in a graphics context that has its clipping area set to the Rectangle of the interactor. This means that OnPaintOver can be used to draw marks outside the interactor.

The base implementation uses this method to paint marks that indicate a selected interactor. A selected interactor is marked by a transparent blue rectangle. The rectangle will be drawn extra "fat" when the mouse overs over the interactor. For different behavior, please override this method.

See Also