Interface IProvideLayoutInformation
Defines a mechanism through which dynamic size information can be provided.
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Shared.Base.dll
Syntax
public interface IProvideLayoutInformation
Remarks
When a layout component implements this interface, the layout manager will obtain the size information through this interface whenever layout is performed. This allows you to provide dynamic layout information.
Properties
MinimumSize
Returns the minimum size of the component.
Declaration
Size MinimumSize { get; }
Property Value
Type |
---|
System.Drawing.Size |
PreferredSize
Returns the preferred size of the component.
Declaration
Size PreferredSize { get; }
Property Value
Type |
---|
System.Drawing.Size |