Version

GetIncludeInLayout Method (ControlLayoutManagerBase)

Gets a value indicating whether the control's position should be adjusted by the layout manager.
Syntax
'Declaration
 
Public Function GetIncludeInLayout( _
   ByVal control As Control _
) As Boolean
public bool GetIncludeInLayout( 
   Control control
)

Parameters

control
Control managed by the component

Return Value

True if the control's position is managed by the component; otherwise false is returned
Remarks

The IncludeInLayout is used to determine whether the component should arrange the specified control when it arranges the controls in the ContainerControl. By default, all controls in the ContainerControl are arranged by the component. You can use the SetIncludeInLayout method to prevent the control from being arranged by the component.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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