﻿Type.registerNamespace("Infragistics.Web.UI");


$IG.Orientation = function () 
{
    ///<summary>
    /// Specifies the type of Orientation that should be applied.
    ///</summary>
}
$IG.Orientation.prototype = 
{
   Horizontal:0, 
   Vertical:1
};
$IG.Orientation.registerEnum("Infragistics.Web.UI.Orientation");



$IG.PostBackAction = function()
{
    /// <summary>
    /// The type of action that should occur when listening to a client event.
    /// </summary>
}
$IG.PostBackAction.prototype =
{
	None:0,
	FullPostBack:1,
	AsyncPostBack:2
};
$IG.PostBackAction.registerEnum("Infragistics.Web.UI.PostBackAction");



$IG.DefaultableBoolean = function()
{
    ///<summary>
    /// Defaultable boolean values allow the user to either directly set the value to control a behavior or inherit from a parent object that 
    /// will be set.
    ///</summary>
}
$IG.DefaultableBoolean.prototype =
{
	NotSet:0,
	True:1,
	False:2
};
$IG.DefaultableBoolean.registerEnum("Infragistics.Web.UI.DefaultableBoolean");



$IG.ClientUIFlags = function()
{
    /// <summary>
    /// Indicates which state flags are set for rendering client state objects.
    /// </summary>
}
$IG.ClientUIFlags.prototype =
{    
	Visible : 0x2,
    Enabled : 0x8,
    Selectable : 0x20,
    Selected : 0x40,
    Hoverable : 0x100,
    Hovered : 0x200, 
    Editable : 0x800,
    Focusable : 0x2000,
    Focused : 0x4000,
    Draggable : 0x10000,
    Droppable : 0x40000,
    KBNavigable : 0x100000
	
};
$IG.ClientUIFlags.registerEnum("Infragistics.Web.UI.ClientUIFlags");



$IG.LayoutControlProps = new function()
{
    this.Count = $IG.ControlMainProps.Count + 0;
};




if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();