OnPaint Method (DicomViewer)
In This Topic
This is an override of the method in the base collection, and would not normally be used by DicomObjects developers
Syntax
'Declaration
<System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)>
Protected Overrides Sub OnPaint( _
ByVal As System.Windows.Forms.PaintEventArgs _
)
'Usage
Dim instance As DicomViewer
Dim pe As System.Windows.Forms.PaintEventArgs
instance.OnPaint(pe)
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)]
protected override void OnPaint(
System.Windows.Forms.PaintEventArgs
)
protected procedure OnPaint(
: System.Windows.Forms.PaintEventArgs
); override;
System.ComponentModel.EditorBrowsableAttribute(EditorBrowsableState.Advanced)
protected override function OnPaint(
: System.Windows.Forms.PaintEventArgs
);
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)]
protected: void OnPaint(
System.Windows.Forms.PaintEventArgs*
) override
[System.ComponentModel.EditorBrowsable(EditorBrowsableState.Advanced)]
protected:
void OnPaint(
System.Windows.Forms.PaintEventArgs^
) override
Parameters
- pe
- Standard Paint Event arguments
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also