SizeControl Event
See Also 
SourceCode.Framework Namespace > View Class : SizeControl Event



Glossary Item Box

Syntax

Visual Basic (Declaration)  
Public Event SizeControl As EventHandler(Of SizingViewCommandEventArgs)
Visual Basic (Usage) Copy Code
Dim instance As View
Dim handler As EventHandler(Of SizingViewCommandEventArgs)
 
AddHandler instance.SizeControl, handler
C#  
public event EventHandler<SizingViewCommandEventArgs> SizeControl
C++/CLI  
public:
event EventHandler<SizingViewCommandEventArgs^>^ SizeControl

Event Data

The event handler receives an argument of type SizingViewCommandEventArgs containing data related to this event. The following SizingViewCommandEventArgs properties provide information specific to this event.

Property Description
CommandID (Inherited from SourceCode.Framework.ViewCommandEventArgs)  
Handled (Inherited from SourceCode.Framework.ViewCommandEventArgs)  
Sizing  

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also