Ext.NET  5.3.0
.NET Component Framework for Enterprise Level Apps
Ext.Net.BoxLayoutConfig Class Reference

Base Class for HBoxLayout and VBoxLayout Classes. More...

Inheritance diagram for Ext.Net.BoxLayoutConfig:
Ext.Net.LayoutConfig Ext.Net.BaseItem Ext.Net.IXObject Ext.Net.IBase Ext.Net.HBoxLayoutConfig Ext.Net.VBoxLayoutConfig Ext.Net.AccordionLayoutConfig

Properties

AlignRoundingMethod AlignRoundingMethod [get, set]
 The Math method to use for rounding fractional pixels when align:middle is used. Possible options are "round", "floor", "ceil". More...
 
virtual bool EnableSplitters [get, set]
 This flag can be set to false to ignore the split config on box items. Defaults to true. More...
 
string Padding [get, set]
 Sets the padding to be applied to all child items managed by this layout. More...
 
BoxPack Pack [get, set]
 Controls how the child items of the container are packed together. Acceptable configuration values for this property are: start - child items are packed together at left side of container (*default**) center - child items are packed together at mid-width of container end - child items are packed together at right side of container Defaults to: "start" More...
 
string StretchMaxPartner [get, set]
 Allows stretchMax calculation to take into account the max perpendicular size (height for HBox layout and width for VBox layout) of another Box layout when calculating its maximum perpendicular child size. If specified as a string, this may be either a known Container ID, or a ComponentQuery selector which is rooted at this layout's Container (ie, to find a sibling, use "^>#siblingItemId). More...
 
string OverflowHandler [get, set]
 An overflow handler or config object for an overflow handler. More...
 
virtual bool ConstrainAlign [get, set]
 Limits the size of aligned components to the size of the container under certain circumstances. Firstly, the container's height (for hbox) or width (for vbox) must not be determined by the size of the child components. Secondly, the child components must have shrinkwrap enabled for this dimension. Defaults to false. More...
 
override ConfigOptionsCollection ConfigOptions [get]
 
- Properties inherited from Ext.Net.LayoutConfig
virtual string LayoutType [get]
 
virtual string ItemCls [get, set]
 An optional extra CSS class that will be added to the container. This can be useful for adding customized styles to the container or any of its children using standard CSS rules. See Ext.Component.ctCls also. More...
 
virtual bool ReserveScrollbar [get, set]
 Set to true to leave space for a vertical scrollbar (if the OS shows space-consuming scrollbars) regardless of whether a scrollbar is needed. This is useful if content height changes during application usage, but you do not want the calculated width of child items to change when a scrollbar appears or disappears. The scrollbar will appear in the reserved space, and the calculated width of child Components will not change. More...
 
override ConfigOptionsCollection ConfigOptions [get]
 
- Properties inherited from Ext.Net.BaseItem
virtual string InstanceOf [get]
 
ItemState State [get]
 
virtual DefaultValueMode DefaultValueMode [get, set]
 
virtual bool DesignMode [get]
 
bool AutoDataBind [get, set]
 
ResourceManager ResourceManager [get]
 
virtual Control Owner [get, set]
 The Owner Control for this Listener. More...
 
virtual bool IsDefault [get]
 Does this object currently represent it's default state. More...
 
bool IsTrackingViewState [get]
 
EventHandlerList Events [get]
 
EventHandler DataBinding
 
Control?? BindingContainer [get]
 
virtual ConfigItemCollection?? CustomConfig [get]
 Collection of custom js config More...
 
virtual ConfigOptionsCollection ConfigOptions [get]
 
virtual ConfigOptionsExtraction ConfigOptionsExtraction [get]
 
System.Web.Mvc.HtmlHelper?? HtmlHelper [get, set]
 
- Properties inherited from Ext.Net.IXObject
ConfigOptionsCollection ConfigOptions [get]
 
ConfigOptionsExtraction ConfigOptionsExtraction [get]
 
DefaultValueMode DefaultValueMode [get, set]
 

Additional Inherited Members

- Public Member Functions inherited from Ext.Net.LayoutConfig
 LayoutConfig ()
 
- Public Member Functions inherited from Ext.Net.BaseItem
virtual bool HasExplicitValue (string name)
 
void EnsureDataBind ()
 
virtual void Call (string name)
 
virtual void Call (string name, params object[] args)
 
virtual void AddScript (string script)
 
virtual void AddScript (string script, params object[] args)
 
virtual bool IsEmptyObject ()
 
Apply< T > (IApply config)
 
BaseItem Apply (object config)
 
virtual void LoadViewState (object state)
 
virtual object SaveViewState ()
 
virtual void TrackViewState ()
 
void SetDirty ()
 
virtual void DataBind ()
 
virtual IControlBuilder ToNativeBuilder ()
 
- Protected Member Functions inherited from Ext.Net.BaseItem
 BaseItem (Control owner)
 
 BaseItem ()
 
virtual void OwnerUpdate (Control owner)
 
virtual void OnDataBinding (EventArgs e)
 

Detailed Description

Base Class for HBoxLayout and VBoxLayout Classes.

Property Documentation

◆ AlignRoundingMethod

AlignRoundingMethod Ext.Net.BoxLayoutConfig.AlignRoundingMethod
getset

The Math method to use for rounding fractional pixels when align:middle is used. Possible options are "round", "floor", "ceil".

◆ ConfigOptions

override ConfigOptionsCollection Ext.Net.BoxLayoutConfig.ConfigOptions
get

◆ ConstrainAlign

virtual bool Ext.Net.BoxLayoutConfig.ConstrainAlign
getset

Limits the size of aligned components to the size of the container under certain circumstances. Firstly, the container's height (for hbox) or width (for vbox) must not be determined by the size of the child components. Secondly, the child components must have shrinkwrap enabled for this dimension. Defaults to false.

◆ EnableSplitters

virtual bool Ext.Net.BoxLayoutConfig.EnableSplitters
getset

This flag can be set to false to ignore the split config on box items. Defaults to true.

◆ OverflowHandler

string Ext.Net.BoxLayoutConfig.OverflowHandler
getset

An overflow handler or config object for an overflow handler.

◆ Pack

BoxPack Ext.Net.BoxLayoutConfig.Pack
getset

Controls how the child items of the container are packed together. Acceptable configuration values for this property are: start - child items are packed together at left side of container (*default**) center - child items are packed together at mid-width of container end - child items are packed together at right side of container Defaults to: "start"

◆ Padding

string Ext.Net.BoxLayoutConfig.Padding
getset

Sets the padding to be applied to all child items managed by this layout.

This property must be specified as a string containing space-separated, numeric padding values. The order of the sides associated with each value matches the way CSS processes padding values:

If there is only one value, it applies to all sides. If there are two values, the top and bottom borders are set to the first value and the right and left are set to the second. If there are three values, the top is set to the first value, the left and right are set to the second, and the bottom is set to the third. If there are four values, they apply to the top, right, bottom, and left, respectively. Defaults to: "0"

◆ StretchMaxPartner

string Ext.Net.BoxLayoutConfig.StretchMaxPartner
getset

Allows stretchMax calculation to take into account the max perpendicular size (height for HBox layout and width for VBox layout) of another Box layout when calculating its maximum perpendicular child size. If specified as a string, this may be either a known Container ID, or a ComponentQuery selector which is rooted at this layout's Container (ie, to find a sibling, use "^>#siblingItemId).


The documentation for this class was generated from the following files: