<?xml version="1.0"?>
<doc>
    <assembly>
        <name>egestao.Web.Controls</name>
    </assembly>
    <members>
        <member name="T:egestao.Web.Controls.UI.HierarColumn">
            <summary>
            The HierarColumn is derived from the DataGridColumn and contains an image with a plus/minus icon 
            and a DynamicControlsPlaceholder that takes the dynamically loaded templates
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarColumn.#ctor">
            <summary>
            Initializes a new instance of HierarColumn class.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,System.Web.UI.WebControls.ListItemType)">
            <summary>
            On initialization the HierarGridColumn adds a plus image and a DynamicControlsPlaceholder 
            that is later filled with the templates
            </summary>
            <param name="cell"></param>
            <param name="columnIndex"></param>
            <param name="itemType"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarColumn.AddControls(System.Web.UI.WebControls.TableCell,System.Web.UI.WebControls.ListItemType)">
            <summary>
            Adds a plus image and a DynamicControlsPlaceholder to the child collection
            </summary>
            <param name="cell"></param>
            <param name="itemType"></param>
        </member>
        <!-- Badly formed XML comment ignored for member "T:egestao.Web.Controls.UI.BaseGrid" -->
        <member name="M:egestao.Web.Controls.UI.BaseGrid.#ctor">
            <summary>
            Classe base do BaseGrid
            </summary>
        </member>
        <member name="T:egestao.Web.Funcoes">
            <summary>
            Summary description for Funcoes.
            </summary>
        </member>
        <member name="F:egestao.Web.Funcoes.CONST_REGEX_DIGIT">
            <summary>
            Constante que define se uma string é um digito
            </summary>
        </member>
        <member name="F:egestao.Web.Funcoes.CONST_REGEX_CEP">
            <summary>
            Constante que define se uma string é um cep válido
            </summary>
        </member>
        <member name="F:egestao.Web.Funcoes.CONST_REGEX_HORA">
            <summary>
            Constante que define se uma string é uma hora válida
            </summary>
        </member>
        <member name="F:egestao.Web.Funcoes.CONST_REGEX_DATA">
            <summary>
            Constante que define se uma string é uma DATA válida
            </summary>
        </member>
        <member name="F:egestao.Web.Funcoes.CONST_REGEX_MOEDA">
            <summary>
            Constante que define se uma string é uma valor de moeda (formato brasileiro) válido
            </summary>
        </member>
        <member name="F:egestao.Web.Funcoes.CONST_REGEX_1A_POSICAO">
            <summary>
            Constante que define se uma string contem caracteres diferentes de A a Z ou 0 a 9 na primeira posição
            </summary>
        </member>
        <member name="F:egestao.Web.Funcoes.CONST_REGEX_QTDE_CARACTERES">
            <summary>
            Constante que define se uma string contem palavras com mais de 45 caracteres
            </summary>
        </member>
        <member name="M:egestao.Web.Funcoes.#ctor">
            <summary>
            Funcoes Comuns aos controles
            </summary>
        </member>
        <member name="M:egestao.Web.Funcoes.IsCurrency(System.String,System.Globalization.NumberFormatInfo)">
            <summary>
            Retorna se um numero pode ser convertido para Currency
            </summary>
            <param name="strValor">Valor em formato string</param>
            <param name="nfi">Cultura da formatacao</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsCurrency(System.String)">
            <summary>
            Retorna se um numero pode ser convertido para Currency
            </summary>
            <param name="strValor">Valor em formato string</param>		
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsDouble(System.String,System.Globalization.NumberFormatInfo)">
            <summary>
            Retorna se um numero pode ser convertido para Double
            </summary>
            <param name="strValor">Valor em formato string</param>
            <param name="nfi">Cultura da formatacao</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsDouble(System.String)">
            <summary>
            Retorna se um numero pode ser convertido para Double
            </summary>
            <param name="strValor">Valor em formato string</param>		
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsNumber(System.String,System.Globalization.NumberFormatInfo)">
            <summary>
            Retorna se uma string é numérica
            </summary>
            <param name="strValor">Valor em formato string</param>
            <param name="nfi">Cultura da formatacao</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsNumber(System.String)">
            <summary>
            Retorna se uma string é numérica
            </summary>
            <param name="strValor">Valor em formato string</param>		
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsInt(System.String,System.Globalization.NumberFormatInfo)">
            <summary>
            Retorna se uma string pode ser convertido para Int
            </summary>
            <param name="strValor">Valor no formato string</param>
            <param name="nfi">Cultura do Valor</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsInt(System.String)">
            <summary>
            Retorna se uma string pode ser convertido para Int
            </summary>
            <param name="strValor">Valor no formato string</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.Modulo11(System.String)">
            <summary>
            Retorna o Modulo de 11 de um numero
            </summary>
            <param name="strNumero"></param>
            <returns></returns>
            <remarks> Caso seja passado uma string que contém caracteres diferentes de 0 a 9, retornará -1 como resultado
            </remarks>
        </member>
        <member name="M:egestao.Web.Funcoes.IsDate(System.String,System.Globalization.DateTimeFormatInfo)">
            <summary>
            Retorna se uma string pode ser convertido para DateTime
            </summary>
            <param name="strValor">Valor no formato string</param>
            <param name="dfi">Cultura do Valor</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsDate(System.String)">
            <summary>
            Retorna se uma string pode ser convertida para DateTime
            </summary>
            <param name="strValor">Valor no formato string</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.IsTime(System.String)">
            <summary>
            Retorna se uma string é uma hora válida
            </summary>
            <param name="strValor">string a ser verificada</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ReplicateString(System.Int32,System.String)">
            <summary>
            Retorna uma string, contendo um caracter replicado n vezes
            </summary>
            <param name="count">quantidade de caracteres</param>
            <param name="Caracter">caracter a ser replicado</param>
            <returns>string replicada</returns>
        </member>
        <member name="M:egestao.Web.Funcoes.StringToByteArray(System.String)">
            <summary>
            Converte uma string em um Byte Array
            </summary>
            <param name="strString">string a ser convertida</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.StringToIntArray(System.String)">
            <summary>
            Converte uma string em um Int Array
            </summary>
            <param name="strString">string a ser convertida</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.StringToShortArray(System.String)">
            <summary>
            Converte uma string em um Short Array
            </summary>
            <param name="strString">string a ser convertida</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.CharToByteArray(System.Char[])">
            <summary>
            Converte um Char Array em um Byte Array
            </summary>
            <param name="chrArray">char array a ser convertido</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.CharToIntArray(System.Char[])">
            <summary>
            Converte um Char Array em um Byte Array
            </summary>
            <param name="chrArray">char array a ser convertido</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.CharToShortArray(System.Char[])">
            <summary>
            Converte um Char Array em um Short Array
            </summary>
            <param name="chrArray">char array a ser convertido</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ByteToCharArray(System.Byte[])">
            <summary>
            Converte um Byte Array para um Char Array
            </summary>
            <param name="btArray"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ByteArrayToString(System.Byte[])">
            <summary>
            Converte um byte array para uma string
            </summary>
            <param name="btArray">byte array a ser convertido</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ArrayProduto(System.Int32[],System.Int32[])">
            <summary>
            Retorna o Produto de 2 matrizes 
            </summary>
            <param name="aArray1">Matriz 1 a ser multiplicada pela Matriz 2</param>
            <param name="aArray2">Matriz 2 a ser multiplicada pela Matriz 1</param>
            <returns>a Soma da  multiplicação das matrizes</returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ArrayProduto(System.Int16[],System.Int16[])">
            <summary>
            Retorna o Produto de 2 matrizes 
            </summary>
            <param name="aArray1">Matriz 1 a ser multiplicada pela Matriz 2</param>
            <param name="aArray2">Matriz 2 a ser multiplicada pela Matriz 1</param>
            <returns>a Soma da  multiplicação das matrizes</returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ValidaCNPJ(System.String)">
            <summary>
            Validação de CNPJ
            </summary>
            <param name="strCNPJ">string contendo o CNPJ</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ValidaCPF(System.String)">
            <summary>
            Validação de CPF
            </summary>
            <param name="strCPF">string contendo o CPF</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ValidaCEP(System.String)">
            <summary>
            Valida se uma string é um CEP Válido
            </summary>
            <param name="strCEP"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ValidaHora(System.String)">
            <summary>
            Valida se uma string é uma hora válida
            </summary>
            <param name="strHora"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ValidaData(System.String)">
            <summary>
            Valida se uma string é uma data válida
            </summary>
            <param name="strData"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ValidaMoeda(System.String)">
            <summary>
            Valida se uma string é uma moeda válida
            </summary>
            <param name="strValorMoeda"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Funcoes.ValidaTexto(System.String)">
            <summary>
            Valida se um texto é válido e retorna a mensagem de erro, caso inválido
            </summary>
            <param name="strTexto"></param>
            <returns></returns>
        </member>
        <member name="T:egestao.Web.Controls.UI.BaseTextBox">
            <summary>
            
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.BaseTextBox.SetMultiLineMaxLenght">
            <summary>
            Limita a quantidade de caracteres dentro de um campo
            </summary>
            <param name="pTamanho">Tamanho maximo de caracteres no campo</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.BaseTextBox.Render(System.Web.UI.HtmlTextWriter)">
            <summary>
            
            </summary>
            <param name="writer"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.BaseTextBox.OnInit(System.EventArgs)">
            <summary>
            
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:egestao.Web.Controls.UI.BaseTextBox.Upper">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.BaseTextBox.Lower">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.BaseTextBox.AutoTab">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.BaseTextBox.Text">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.BaseTextBox.Enabled">
            <summary>
            
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.EditBox">
            <summary>
            
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.#ctor">
            <summary>
            
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.reqVal">
            <summary>
            Required validator utilizado no controle
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.Render(System.Web.UI.HtmlTextWriter)">
            <summary>
            
            </summary>
            <param name="writer"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.OnInit(System.EventArgs)">
            <summary>
            
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.CreateChildControls">
            <summary>
            
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.Formatar(System.Object,egestao.Web.Controls.UI.EditBox.FormatList)">
            <summary>
            Retorna o texto formatado de um valor de um campo EditBox
            </summary>
            <param name="value"></param>
            <param name="fmt"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.FormatarMoeda(System.Object,System.String)">
            <summary>
            Retornar a formatação de Moeda com o símbolo informado
            </summary>
            <param name="value"></param>
            <param name="strSimbolo"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.AplicaMascaras(System.String,System.String)">
            <summary>
            Aplica as mascaras configuradas
            </summary>
            <param name="strValue">Valor desformatado</param>
            <param name="strMask">Marcara de formatação</param>
            <returns>Valor Formatado com a mascara</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.EditBox.Validate">
            <summary>
            <see cref="T:System.Web.UI.IValidator"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.Decimals">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.Mask">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.Format">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.Value">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.PersistsMask">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.ControleExtenso">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.JavaScriptFile">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.Required">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.EnableClientScriptRequired">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.RequiredErrorMessage">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.FieldName">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.CSSValidator">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.MinValue">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.MaxValue">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.RangeErrorMessage">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.ClientID">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.IsValid">
            <summary>
            <see cref="T:System.Web.UI.IValidator"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.EditBox.ErrorMessage">
            <summary>
            <see cref="T:System.Web.UI.IValidator"/>
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.EditBox.FormatList">
            <summary>
            Enumeração contendo lista de formatos aceitos pelo controle <see cref="T:egestao.Web.Controls.UI.EditBox"/>.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.ZipCode">
            <summary>
            Formato CEP. ex: 99999-999.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.CPF">
            <summary>
            Formato CPF. ex: 999.999.999-99.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.CNPJ">
            <summary>
            Formato CNPJ. ex: 99.999.999/9999-99.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.PhoneNumber">
            <summary>
            Formato Telefone. ex: 9999-9999.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.PhoneNumberDDD">
            <summary>
            Formato DDD + Telefone. ex: (999) 9999-9999.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.ShortDate">
            <summary>
            Formato Data Abreviada. ex: dd/MM/yyyy.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.DateMonthYear">
            <summary>
            Formato Data Abreviada. ex: dd/MM.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.DateYear">
            <summary>
            Formato Data Abreviada. ex: yyyy.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.DateTime">
            <summary>
            Formato Data Abreviada. ex: dd/MM/yyyy hh:mm.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.ShortTime">
            <summary>
            Formato Data Abreviada. Ex: hh:mm.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.Custom">
            <summary>
            Permite que seja informado uma máscara customizada na propriedade <see cref="P:egestao.Web.Controls.UI.EditBox.Mask"/>.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.Number">
            <summary>
            Aceitar somente números.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.Currency">
            <summary>
            Formatação de Moeda (Valores) ex: 1.200,55
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.Texto">
            <summary>
            Formato Texto Livre
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.EditBox.FormatList.EMail">
            <summary>
            Formato de email
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DatePicker">
            <summary>
            Representa um controle do time DatePicker, que exibe janela popup para seleção de data.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.DatePicker.CONST_LARGURA_TEXTBOX">
            <summary>
            Largura do TextBox (esta constante em pixels...temporariamente)
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DatePicker.#ctor">
            <summary>
            Cria uma nova instância da classe <see cref="T:egestao.Web.Controls.UI.DatePicker"/>.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DatePicker.OnInit(System.EventArgs)">
            <summary>
            Raises the <see cref="E:System.Web.UI.Control.Init"/> event.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DatePicker.CreateChildControls">
            <summary>
            Evento para desenhar controle em runtime.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DatePicker.Validate">
            <summary>
            <see cref="T:System.Web.UI.IValidator"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.Value">
            <summary>
            Data selecionada no calendário.
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.JavaScriptFile">
            <summary>
            Nome do arquivo de javascript responsável pelas validações
            </summary>
            <remarks> O caminho deverá ser sempre absoluto em relação ao diretório virtual
            </remarks>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.ImagePath">
            <summary>
            Caminho onde as imagens a serem utilizadas estão.
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.JavaScriptEventFunction">
             <summary>
             Evento javascript a ser acionado.
             </summary>
             <remarks>
             Deve ser criado uma função javascript na página conforme exemplo abaixo:
             <code>
            		//função javascript no cliente
            		var eventoX = new Function("funcaoX()");
            		
            		function funcaoX() {
            			alert("ce clicou que eu vi");
            		}
            
             </code>
             Depois deve ser configurada a propriedade do DatePicker da seguinte maneira:
             <code>
            		DatePicker.JavaScriptEventFunction = "eventoX";
             </code>
             </remarks>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.IsValid">
            <summary>
            <see cref="T:System.Web.UI.IValidator"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.ErrorMessage">
            <summary>
            <see cref="T:System.Web.UI.IValidator"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.Upper">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.Lower">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.MinValue">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.MaxValue">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.Decimals">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.ControleExtenso">
            <summary>
            
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DatePicker.ClientID">
            <summary>
            
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.Comum">
            <summary>
            Summary description for Comum.
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.Comum.CONST_CSS_VALIDATOR_PADRAO">
            <summary>
            CSS utilizado para mostrar imagem do erro na validação do client
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.Comum.CONST_MIN_DATE">
            <summary>
            Data minima
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.Comum.CONST_MAX_DATE">
            <summary>
            Data maxima
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.Comum.MSG_ERRO_DATA_INVALIDA">
            <summary>
            Erro para data invalida
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.Comum.#ctor">
            <summary>
            Classe de funcoes comuns
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.Comum.COR_CONTROLE_DESABILITADO">
            <summary>
            Cor de fundo do Controle quando esta desabilitado;
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.Comum.CopiaAtributos(System.Web.UI.WebControls.WebControl,System.Web.UI.WebControls.WebControl)">
            <summary>
            Copia os atributos de um controle para outro
            </summary>
            <param name="ctlDestino">Controle Destino</param>
            <param name="ctlOrigem">Controle Origem</param>
        </member>
        <member name="M:egestao.Web.Controls.Comum.ClientScript(System.String)">
            <summary>
            Retornar o codigo javascript embutido no assembly
            </summary>
            <param name="fileName"></param>
            <returns></returns>
        </member>
        <member name="T:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts">
            <summary>
            Summary description for FusionCharts.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.EncodeDataURL(System.String,System.Boolean)">
            <summary>
            encodes the dataURL before it's served to FusionCharts
            If you have parameters in your dataURL, you'll necessarily need to encode it
            </summary>
            <param name="dataURL">dataURL to be fed to chart</param>
            <param name="noCacheStr">Whether to add aditional string to URL to disable caching of data</param>
            <returns>Encoded dataURL, ready to be consumed by FusionCharts</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.RenderChartALL(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Generate html code for rendering chart
            This function assumes that you've already included the FusionCharts JavaScript class in your page
            </summary>
            <param name="chartSWF">SWF File Name (and Path) of the chart which you intend to plot</param>
            <param name="strURL">If you intend to use dataURL method for this chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method)</param>
            <param name="strXML">If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method)</param>
            <param name="chartId">Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.</param>
            <param name="chartWidth">Intended width for the chart (in pixels)</param>
            <param name="chartHeight">Intended height for the chart (in pixels)</param>
            <param name="debugMode">Whether to start the chart in debug mode</param>
            <param name="registerWithJS">Whether to ask chart to register itself with JavaScript</param>
            /// <param name="transparent">Whether transparent chart (true / false)</param>
            <returns>JavaScript + HTML code required to embed a chart</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.RenderChart(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Generate html code for rendering chart
            This function assumes that you've already included the FusionCharts JavaScript class in your page
            </summary>
            <param name="chartSWF">SWF File Name (and Path) of the chart which you intend to plot</param>
            <param name="strURL">If you intend to use dataURL method for this chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method)</param>
            <param name="strXML">If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method)</param>
            <param name="chartId">Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.</param>
            <param name="chartWidth">Intended width for the chart (in pixels)</param>
            <param name="chartHeight">Intended height for the chart (in pixels)</param>
            <param name="debugMode">Whether to start the chart in debug mode</param>
            <param name="registerWithJS">Whether to ask chart to register itself with JavaScript</param>
            <param name="transparent">Whether transparent chart (true / false)</param>
            <returns>JavaScript + HTML code required to embed a chart</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.RenderChart(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean)">
            <summary>
            Generate html code for rendering chart
            This function assumes that you've already included the FusionCharts JavaScript class in your page
            </summary>
            <param name="chartSWF">SWF File Name (and Path) of the chart which you intend to plot</param>
            <param name="strURL">If you intend to use dataURL method for this chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method)</param>
            <param name="strXML">If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method)</param>
            <param name="chartId">Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.</param>
            <param name="chartWidth">Intended width for the chart (in pixels)</param>
            <param name="chartHeight">Intended height for the chart (in pixels)</param>
            <param name="debugMode">Whether to start the chart in debug mode</param>
            <param name="registerWithJS">Whether to ask chart to register itself with JavaScript</param>
            <returns>JavaScript + HTML code required to embed a chart</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.RenderChartHTML(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
            Renders the HTML code for the chart. This
            method does NOT embed the chart using JavaScript class. Instead, it uses
            direct HTML embedding. So, if you see the charts on IE 6 (or above), you'll
            see the "Click to activate..." message on the chart.
            </summary>
            <param name="chartSWF">SWF File Name (and Path) of the chart which you intend to plot</param>
            <param name="strURL">If you intend to use dataURL method for this chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method)</param>
            <param name="strXML">If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method)</param>
            <param name="chartId">Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.</param>
            <param name="chartWidth">Intended width for the chart (in pixels)</param>
            <param name="chartHeight">Intended height for the chart (in pixels)</param>
            <param name="debugMode">Whether to start the chart in debug mode</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.RenderChartHTML(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean)">
            <summary>
            Renders the HTML code for the chart. This
            method does NOT embed the chart using JavaScript class. Instead, it uses
            direct HTML embedding. So, if you see the charts on IE 6 (or above), you'll
            see the "Click to activate..." message on the chart.
            </summary>
            <param name="chartSWF">SWF File Name (and Path) of the chart which you intend to plot</param>
            <param name="strURL">If you intend to use dataURL method for this chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method)</param>
            <param name="strXML">If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method)</param>
            <param name="chartId">Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.</param>
            <param name="chartWidth">Intended width for the chart (in pixels)</param>
            <param name="chartHeight">Intended height for the chart (in pixels)</param>
            <param name="debugMode">Whether to start the chart in debug mode</param>
            <param name="registerWithJS">Whether to ask chart to register itself with JavaScript</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.RenderChartHTML(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Renders the HTML code for the chart. This
            method does NOT embed the chart using JavaScript class. Instead, it uses
            direct HTML embedding. So, if you see the charts on IE 6 (or above), you'll
            see the "Click to activate..." message on the chart.
            </summary>
            <param name="chartSWF">SWF File Name (and Path) of the chart which you intend to plot</param>
            <param name="strURL">If you intend to use dataURL method for this chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method)</param>
            <param name="strXML">If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method)</param>
            <param name="chartId">Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.</param>
            <param name="chartWidth">Intended width for the chart (in pixels)</param>
            <param name="chartHeight">Intended height for the chart (in pixels)</param>
            <param name="debugMode">Whether to start the chart in debug mode</param>
            <param name="registerWithJS">Whether to ask chart to register itself with JavaScript</param>
            <param name="transparent">Whether transparent chart (true / false)</param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.InfoSoftGlobal.FusionCharts.boolToNum(System.Boolean)">
            <summary>
            Transform the meaning of boolean value in integer value
            </summary>
            <param name="value">true/false value to be transformed</param>
            <returns>1 if the value is true, 0 if the value is false</returns>
        </member>
        <!-- Badly formed XML comment ignored for member "T:egestao.Web.Controls.UI.ComboBox" -->
        <member name="F:egestao.Web.Controls.UI.ComboBox.handlerPageName">
            <summary>
            Required validator utilizado no controle
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.ComboBox.#ctor">
            <summary>
            Cria uma nova instância da classe <see cref="T:egestao.Web.Controls.UI.ComboBox"/>.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.ComboBox.OnInit(System.EventArgs)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.ComboBox.OnInit(System.EventArgs)"/>
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.ComboBox.DataBind">
            <summary>
            Binds a data source to the invoked server control and all its child controls.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.ComboBox.Render(System.Web.UI.HtmlTextWriter)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.ComboBox.Render(System.Web.UI.HtmlTextWriter)"/>
            </summary>
            <param name="writer"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.ComboBox.Javascript">
            <summary>
            Retorna o codigo javascript utilizado no cliente
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.ComboBox.Validate">
            <summary>
            Valida o Controle no servidor
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.HandlerPageName">
            <summary>
            DynamicDropDownList.HandlerPageName Property
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.GetParameterName">
            <summary>
            DynamicDropDownList.GetParameterName Property
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.OtherGetParameters">
            <summary>
            DynamicDropDownList.OtherGetParameters Property
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.DDLToChargeID">
            <summary>
            DynamicDropDownList.DDLToChargeID Property
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.Asynchronous">
            <summary>
            DynamicDropDownList.Asynchronous Property
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.FirstItem">
            <summary>
            Indica o primeiro item do combo
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.AutoSearch">
            <summary>
            Indica haverá pesquisa ao digitar no combo
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.IsDynamic">
            <summary>
            Indica se o controle é Dinamico
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.IsValid">
            <summary>
            Retorna se o controle é válido
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.ErrorMessage">
            <summary>
            Mensagem de erro quando o controle for inválido
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.Required">
            <summary>
            Indica se o campo é obrigatório
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.RequiredErrorMessage">
            <summary>
            Mensagem de erro quando o campo for obrigatório
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.FieldName">
            <summary>
            Nome do Campo de edição
            </summary>		
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.CSSValidator">
            <summary>
            Nome do CSS do Validator
            </summary>				
        </member>
        <member name="T:egestao.Web.Controls.UI.ComboBox.FirstItemType">
            <summary>
            Indica o tipo 
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.ComboBox.FirstItemType.None">
            <summary>
            Nenhum
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.ComboBox.FirstItemType.All">
            <summary>
            Todos itens
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.ComboBox.FirstItemType.ChooseOne">
            <summary>
            - Selecione -
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.ComboBox.FirstItemType.Optional">
            <summary>
            Opcional
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.ComboBox.FirstItemType.Any">
            <summary>
            Any - Qualquer item
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.ComboBox.ComboBoxDesigner">
            <summary>
            Classe de desenho do controle <see cref="T:egestao.Web.Controls.UI.BaseTextBox"/> em design.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.ComboBox.ComboBoxDesigner.GetDesignTimeHtml">
            <summary>
            Método que desenha controle.
            </summary>
            <returns></returns>
        </member>
        <member name="P:egestao.Web.Controls.UI.ComboBox.ComboBoxDesigner.AllowResize">
            <summary>
            Indica se o controle pode ser redimensionado.
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.BarCode39">
            <summary>
            Biblioteca para geração de código de barras
            Esta biblioteca retorna um byte array com a figura a ser desenha 
            referente ao codigo de barras
            <para></para>
             <c>
             Padrão do código utilizado: Code39
             <para></para>
             </c>
            
            	<code>
            	   Para utilização no Reporting Services
            	    a) Criar um controle Image
            	    b) no value dele colocar
            			    =egestao.Web.Controls.BarCode39.GetImageBytes(Fields!"CAMPO".Value)
            			    onde "CAMPO" será o campo na tabela 
            			c) mudar o MIMETYPE para image/gif
            			d) mudar o Source para Database
            	</code>
            
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.BarCode39.#ctor">
            <summary>
            Construtor
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.BarCode39.GetImageBytes(System.String,System.Int32,System.Int32)">
            <summary>
            Retorna uma imagem com a representação de um código de barras
            </summary>
            <param name="strCodigo">string a ser codificada</param>		
            <param name="larguraImagem">Largura da Imagem gerada</param>
            <param name="alturaBarra">Altura da Barra em pixels</param>		
            <returns>byte array contendo a figura no formato especifícado</returns>
            <example> 
            		Retornando um byte array de um JPEG
            <code>
            	byte [] byte = BarCode.GetImageBytes("12345", ImageFormat.Jpeg);
            </code>
            
            </example>
            
        </member>
        <member name="M:egestao.Web.Controls.BarCode39.GetImageBytes(System.String,System.String,System.Drawing.Imaging.ImageFormat,System.Int32,System.Int32)">
            <summary>
            Retorna uma imagem com a representação de um código de barras
            </summary>
            <param name="strCodigo">string a ser codificada</param>
            <param name="strCodigoFormatado">string a ser mostrada formatada</param>
            <param name="tipoImagem">Formato da Imagem JPG, GIF, etc</param>
            <param name="larguraImagem">Largura da Imagem gerada</param>
            <param name="alturaBarra">Altura da Barra em pixels</param>		
            <returns>byte array contendo a figura no formato especifícado</returns>
            <example> 
            		Retornando um byte array de um JPEG
            <code>
            	byte [] byte = BarCode.GetImageBytes("12345", ImageFormat.Jpeg);
            </code>
            
            </example>
            
        </member>
        <member name="M:egestao.Web.Controls.BarCode39.GetImage(System.String,System.String,System.Drawing.Imaging.ImageFormat,System.Int32,System.Int32)">
            <summary>
             Retorna uma imagem com a representação de um código de barras
            </summary>
            <param name="strCodigo">string a ser codificada</param>
            <param name="strCodigoFormatado">string a ser mostrada formatada</param>
            <param name="tipoImagem">Formato da Imagem JPG, GIF, etc</param>
            <param name="larguraImagem">Largura da Imagem gerada</param>
            <param name="alturaBarra">Altura da Barra em pixels</param>
            <returns>
            </returns>
        </member>
        <member name="T:egestao.Web.Controls.BarCode2of5">
            <summary>
            Biblioteca para geração de código de barras
            Esta biblioteca retorna um byte array com a figura a ser desenha 
            referente ao codigo de barras
            <para></para>
             <c>
             Padrão do código utilizado: 2 de 5 intercalado
             <para></para>
             </c>
            
            	<code>
            	   Para utilização no Reporting Services
            	    a) Criar um controle Image
            	    b) no value dele colocar
            			    =egestao.Web.Controls.BarCode2of5.GetImageBytes(Fields!"CAMPO".Value)
            			    onde "CAMPO" será o campo na tabela 
            			c) mudar o MIMETYPE para image/gif
            			d) mudar o Source para Database
            	</code>
            
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.BarCode2of5.#ctor">
            <summary>
            Construtor
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.BarCode2of5.Interleaved2of5(System.String)">
            <summary>
            Retorna a representação da string de código de barras a ser formatada
            Este formato I2OF5 refere-se ao padrão 2 de 5 Intercalado utilizadao pela
            FEBRABAN
            </summary>
            <param name="strData">string contendo o valor ser codificado</param>
            <returns>string formatada</returns>
        </member>
        <member name="M:egestao.Web.Controls.BarCode2of5.GetImageBytes(System.String,System.String,System.Drawing.Imaging.ImageFormat,System.Int32,System.Int32)">
            <summary>
            Retorna uma imagem com a representação de um código de barras
            </summary>
            <param name="strCodigo">string a ser codificada</param>
            <param name="strCodigoFormatado">string a ser mostrada formatada</param>		
            <param name="tipoImagem">Formato da Imagem JPG, GIF, etc</param>
            <param name="larguraImagem">Largura da Imagem gerada</param>
            <param name="alturaBarra">Altura da Barra em pixels</param>
            <returns>byte array contendo a figura no formato especifícado</returns>
            <example> 
            		Retornando um byte array de um JPEG
            <code>
            	byte [] byte = BarCode2of5.GetImageBytes("12345", ImageFormat.Jpeg);
            </code>
            
            </example>
        </member>
        <member name="M:egestao.Web.Controls.BarCode2of5.GetImage(System.String,System.String,System.Drawing.Imaging.ImageFormat,System.Int32,System.Int32)">
            <summary>
            Retorna uma imagem com a representação de um código de barras
            </summary>
            <param name="strCodigo">string a ser codificada</param>
            <param name="strCodigoFormatado">string a ser mostrada formatada</param>
            <param name="tipoImagem">Formato da Imagem JPG, GIF, etc</param>
            <param name="larguraImagem">Largura da Imagem gerada</param>
            <param name="alturaBarra">Altura da Barra em pixels</param>
            <returns></returns>
        </member>
        <member name="T:egestao.Web.Controls.UI.HierarGrid">
             <summary>
             The HierarGrid is a DataGrid-like control that is capable of displaying parent-child relations 
             using templates to display the child elements.
             </summary>
             <example>
             <code>
             <![CDATA[
             	private void Page_Load(object sender, System.EventArgs e)
            		{
            			if(!IsPostBack)
            			{
            				DataSet ds = new DataSet();
            				ds.ReadXml(AppDomain.CurrentDomain.BaseDirectory + @"\Testdata.xml");
            
            				DataColumn dc1;
            				DataColumn dc2;
            				//Relation Title => Author
            				dc1 = ds.Tables[0].Columns["title_id"];
            				dc2 = ds.Tables[1].Columns["title_id"];
            				DataRelation dr = new DataRelation("Title_Author", dc1, dc2, false);
            				ds.Relations.Add(dr);
            
            				//Relation Title => Sales
            				dc1 = ds.Tables[0].Columns["title_id"];
            				dc2 = ds.Tables[2].Columns["title_id"];
            				dr = new DataRelation("Title_Sales", dc1, dc2, false);
            				ds.Relations.Add(dr);
            
            				HG1.DataSource = ds;
            				HG1.DataMember = "Titles";
            				HG1.DataBind();
            				HG1.RowExpanded[0] = true;
            			}
            		}
             ]]>
             </code>
             </example>
        </member>
        <member name="F:egestao.Web.Controls.UI.HierarGrid.EXPANDEDCLIENTIDS_HIDDENFIELDNAME">
            <summary>
            Name of the Hidden field that stores the ClientIDs of the expanded rows
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.HierarGrid.EXPANDEDCLIENTIDS_SEPARATOR">
            <summary>
            String used as a separator between the different ClientIDs in the hidden text field
            Note: when changing this value please update the JavaScripts too (hardcoded)
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.HierarGrid._hierarColumnID">
            <summary>
            Index of the HierarGridColumn
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.HierarGrid.cachingTable">
            <summary>
            Stores the cached filenames of the templates
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.HierarGrid.tdmCachingTable">
            <summary>
            Stores the cached template data modes
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.OnTemplateSelection(egestao.Web.Controls.UI.HierarGridTemplateSelectionEventArgs)">
            <summary>
            Raises the <see cref="E:egestao.Web.Controls.UI.HierarGrid.TemplateSelection">TemplateSelection</see> event
            </summary>
            <param name="e"></param>
            <returns>returns true if at least one event handler is attached</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.OnTemplateDataModeSelection(egestao.Web.Controls.UI.HierarGridTemplateDataModeSelectionEventArgs)">
            <summary>
            Raises the <see cref="E:egestao.Web.Controls.UI.HierarGrid.TemplateDataModeSelection">TemplateDataModeSelection</see> event
            </summary>
            <param name="e"></param>
            <returns>returns true if at least one event handler is attached</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.CreateColumnSet(System.Web.UI.WebControls.PagedDataSource,System.Boolean)">
            <summary>
            Overriding the implementation of the DataGrid to add the additional HierarColumn 
            if not already existing
            </summary>
            <param name="source"></param>
            <param name="useDataSource"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.OnItemDataBound(System.Web.UI.WebControls.DataGridItemEventArgs)">
            <summary>
            Override handling to display the tables with a relation defined to the DataSource (aka child tables)
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.DisplayRelatedTables(System.Web.UI.WebControls.DataGridItem,System.Data.DataRowView)">
            <summary>
            Loops over all the child relations of the current table and displays for each row in each child table
            the appropriate template
            </summary>
            <param name="item">DataGridItem that has just been databound</param>
            <param name="drv">DataRowView belonging to the DataGridItem item</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.GetTemplateDataMode(System.Data.DataRelation)">
            <summary>
            Returns the the template data mode that should be used based on the DataRelation
            via the TemplateDataModeSelection event
            </summary>
            <param name="dataRelation">DataRelation that generated the child rows for which the template data mode is to be determined</param>
            <returns>TemplateDataMode to use for the related rows</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.GetTemplateFilename(System.Data.DataRow)">
            <summary>
            Returns the filename for the template that should be displayed from the cache or 
            via the TemplateSelection event
            </summary>
            <param name="dataRow">DataRow of the child for which the template is loaded</param>
            <returns>Filename of the template</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.LoadTemplateTable(System.Web.UI.WebControls.Panel,System.String,System.Web.UI.WebControls.DataGridItem,System.Data.DataRow[])">
            <summary>
            Loads one instance of the template for all child rows of a relation
            </summary>
            <param name="panel">Container in which the template is rendered</param>
            <param name="templateFilename">Filename of the template</param>
            <param name="item">DataGridItem that has just been databound</param>
            <param name="dataRows">DataRow array of the childs that should be displayed</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.MergeChildRows(System.Data.DataSet,System.Data.DataRow[])">
            <summary>
            Recursive method that analyses the child table for its relations and copies the respective child rows into the DataSet (used for nested HierarGrids)
            </summary>
            <param name="ds">DataSet that contains the child data rows and all related rows</param>
            <param name="dataRows">DataRows that are checked for child relations</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.LoadTemplateSingleRow(System.Int32,System.Web.UI.WebControls.Panel,System.String,System.Web.UI.WebControls.DataGridItem,System.Data.DataRow)">
            <summary>
            Loads one instance of the template for each child row
            </summary>
            <param name="index">index of the DataRow in the Table</param>
            <param name="panel">Container in which the template is rendered</param>
            <param name="templateFilename">Filename of the template</param>
            <param name="item">DataGridItem that has just been databound</param>
            <param name="dataRow">DataRow of the child that should be displayed</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.LoadTemplateIntoPanel(System.Web.UI.WebControls.Panel,System.String,System.String,System.String)">
            <summary>
            Creates a new panel and loads the Template from the ASCX file into the panel
            </summary>
            <param name="panel">Container in which the template is rendered</param>
            <param name="templateFilename">Filename of the template</param>
            <param name="panelName">ID of the Panel that is created</param>
            <param name="templateName">ID of the Template that is loaded</param>
            <returns>a reference to the newly created panel that contains the template</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.OnPreRender(System.EventArgs)">
            <summary>
            Overridden to render client script from resource file
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.RaisePostDataChangedEvent">
            <summary>
            Unused in the implementation of the HierarGrid but needed according to IPostBackDataHandler
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGrid.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Loads the post data from the hidden field that contains the row state (expanded or collapsed)
            </summary>
            <param name="postDataKey">contains the control's UniqueID</param>
            <param name="postCollection">Postdata</param>
            <returns>always false</returns>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGrid.RowExpanded">
            <summary>
            Specifies whether a Row is expanded or collapsed
            Please note that this property is only available after the Items collection is populated (usually after DataBind)
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGrid.ExpandedClientIDs">
            <summary>
            Specifies the ClientIDs of the expanded rows
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGrid.LoadControlMode">
            <summary>
            Specifies whether the template shall be loaded as a template using Page.LoadTemplate 
            or as a UserControl using Page.LoadControl
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGrid.TemplateDataMode">
            <summary>
            Specifies whether to load one instance of the template for all child rows of a relation or to 
            load one instance of the template for each child row or to defer the decision until run time.
            You can use TemplateDataModes.Table if you want to display a DataGrid for multiple child rows - the
            BindingContainer contains a DataSet
            You can use TemplateDataModes.SingleRow if you want to display the templates multiple times for each child row
            You can use TemplateDataModes.RunTime if you want to defer the decision of which template data mode to use
            until runtime and base it on the particular data relation that is currently being displayed.
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGrid.TemplateCachingBase">
            <summary>
            Specifies whether the template filename shall be cached based on the name of the table or the
            data of a <see cref="P:egestao.Web.Controls.UI.HierarGrid.TemplateCachingColumn">specific column</see>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGrid.TemplateCachingColumn">
            <summary>
            Specifies the column name that is the basis for template filename <see cref="P:egestao.Web.Controls.UI.HierarGrid.TemplateCachingBase">caching</see>
            </summary>
        </member>
        <member name="E:egestao.Web.Controls.UI.HierarGrid.TemplateSelection">
            <summary>
            Occurs when the HierarGrid finds a new child row for which there is no template filename in the cache table
            You can use HierarGridTemplateSelectionEventArgs.Row to define which template shall be loaded and
            return the filename in the HierarGridTemplateSelectionEventArgs.TemplateFilename property
            <code>
            <![CDATA[
            private void HierarGrid_TemplateSelection(object sender, HierarGridTemplateSelectionEventArgs e)
            {
            	e.TemplateFilename = "Templates\\" + e.Row.Table.TableName + ".ascx";
            }
            ]]>
            </code>
            </summary>
        </member>
        <member name="E:egestao.Web.Controls.UI.HierarGrid.TemplateDataModeSelection">
            <summary>
            Occurs when the TemplateDataMode is set to runtime and HierarGrid finds a new DataRelation
            for which it needs to determine the TemplateDataMode to use.
            You can use HierarGridTemplateDataModeSelectionEventArgs.Relation to define which data mode the heirargrid
            will use to load the particular template for the DataRelation.
            return the template data mode in the HierarGridTemplateDataModeSelectionEventArgs.TemplateDataMode property
            <code>
            <![CDATA[
            private void HierarGrid_TemplateDataModeSelection(object sender, HierarGridTemplateSelectionEventArgs e)
            {
            	e.TemplateDataMode = TemplateDataModes.SingleRow;
            }
            ]]>
            </code>
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.LoadControlModes">
            <summary>
            Specifies whether the template shall be loaded as a template using Page.LoadTemplate 
            or as a UserControl using Page.LoadControl
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.LoadControlModes.Template">
            <summary>
            Specifies that the template shall be loaded as a template using Page.LoadTemplate
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.LoadControlModes.UserControl">
            <summary>
            Specifies that the template shall be loaded as a UserControl using Page.LoadControl
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.TemplateDataModes">
            <summary>
            Specifies whether to load one instance of the template for all child rows of a relation or to 
            load one instance of the template for each child row
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.TemplateDataModes.Table">
            <summary>
            Specifies that one template per table shall be loaded
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.TemplateDataModes.SingleRow">
            <summary>
            Specifies that one template per row shall be loaded
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.TemplateDataModes.RunTime">
            <summary>
            Specifies that the template data mode will be determined for each child relation at runtime via the TemplateDataModeSelection event
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.CachingBases">
            <summary>
            Specifies whether the template filename shall be cached based on the name of the table of the
            data of a <see cref="P:egestao.Web.Controls.UI.HierarGrid.TemplateCachingColumn">specific column</see>
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.CachingBases.None">
            <summary>
            Don't cache the filename of the template
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.CachingBases.Tablename">
            <summary>
            Cache the filename of the template based on the tablename
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.CachingBases.Column">
            <summary>
            Cache the filename of the template based on the value in the column (specify the TemplateCachingColumn)
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.RowStates">
            <summary>
            Helper class that externally looks like a collection with an indexer but stores the RowState in the 
            owner's hidden text box "ExpandedClientIDs"
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.RowStates.#ctor(egestao.Web.Controls.UI.HierarGrid)">
            <summary>
            Constructor that sets a reference to the parent HierarGrid
            </summary>
            <param name="hierarGrid">Reference to the parent HierarGrid</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.RowStates.CollapseAll">
            <summary>
            Collapses all the rows
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.RowStates.ExpandAll">
            <summary>
            Expands all the rows
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.RowStates.SetAll(System.Boolean)">
            <summary>
            Expands or collapses all the rows
            </summary>
            <param name="expanded"></param>
        </member>
        <member name="P:egestao.Web.Controls.UI.RowStates.Item(System.Int32)">
            <summary>
            Specifies whether a Row is expanded or collapsed
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.HierarGridTemplateSelectionEventHandler">
            <summary>
            Represents the method that will handle the TemplateSelection event.
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.HierarGridTemplateSelectionEventArgs">
            <summary>
            Provides data for the TemplateSelection event
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGridTemplateSelectionEventArgs.#ctor(System.Data.DataRow)">
            <summary>
            Initializes a new instance of HierarGridTemplateSelectionEventArgs class.
            </summary>
            <param name="row">The row that the event was raised for</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGridTemplateSelectionEventArgs.#ctor(System.Data.DataRow,System.String)">
            <summary>
            Initializes a new instance of HierarGridTemplateSelectionEventArgs class.
            </summary>
            <param name="row">The row that the event was raised for</param>
            <param name="templateFilename">The filename of the template that shall be loaded</param>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGridTemplateSelectionEventArgs.Row">
            <summary>
            Gets the row the event has been raised for
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGridTemplateSelectionEventArgs.TemplateFilename">
            <summary>
            Set the Filename for the template that shall be loaded
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.HierarGridTemplateDataModeSelectionEventHandler">
            <summary>
            Represents the method that will handle the TemplateDataModeSelection event.
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.HierarGridTemplateDataModeSelectionEventArgs">
            <summary>
            Provides data for the TemplateDataModeSelection event
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGridTemplateDataModeSelectionEventArgs.#ctor(System.Data.DataRelation)">
            <summary>
            Initializes a new instance of HierarGridTemplateDataModeSelectionEventArgs class.
            </summary>
            <param name="relation">The DataRelation that the event was raised for</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.HierarGridTemplateDataModeSelectionEventArgs.#ctor(System.Data.DataRelation,egestao.Web.Controls.UI.TemplateDataModes)">
            <summary>
            Initializes a new instance of HierarGridTemplateDataModeSelectionEventArgs class.
            </summary>
            <param name="relation">The DataRelation that the event was raised for</param>
            <param name="templateDataMode">The the TemplateDataMode that will be use to load child rows for the DataRelation</param>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGridTemplateDataModeSelectionEventArgs.Relation">
            <summary>
            Gets the DataRelation the event has been raised for
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.HierarGridTemplateDataModeSelectionEventArgs.TemplateDataMode">
            <summary>
            Set the TemplateDataMode that will be use to load child rows for the DataRelation
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DynamicControlsPlaceholder">
            <summary>
            DynamicControlsPlaceholder solves the problem that dynamically added controls are not automatically recreated on subsequent requests
            The controls uses the ViewState to store the types of the child controls recursively and recreates them automatically.
            
            Please note that property values that are set before "TrackViewState" is called (usually in Controls.Add) are not persisted
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlsPlaceholder.OnControlRestored(egestao.Web.Controls.UI.DynamicControlEventArgs)">
            <summary>
            Raises the <see cref="E:egestao.Web.Controls.UI.DynamicControlsPlaceholder.ControlRestored">ControlRestored</see> event.
            </summary>
            <param name="e">The <see cref="T:egestao.Web.Controls.UI.DynamicControlEventArgs">DynamicControlEventArgs</see> object that contains the event data.</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlsPlaceholder.OnPreRestore(System.EventArgs)">
            <summary>
            Raises the <see cref="E:egestao.Web.Controls.UI.DynamicControlsPlaceholder.PreRestore">PreRestore</see> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs">EventArgs</see> object that contains the event data.</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlsPlaceholder.OnPostRestore(System.EventArgs)">
            <summary>
            Raises the <see cref="E:egestao.Web.Controls.UI.DynamicControlsPlaceholder.PostRestore">PostRestore</see> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs">EventArgs</see> object that contains the event data.</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlsPlaceholder.LoadViewState(System.Object)">
            <summary>
            Recreates all dynamically added child controls of the Placeholder and then calls the default 
            LoadViewState mechanism
            </summary>
            <param name="savedState">Array of objects that contains the child structure in the first item, 
            and the base ViewState in the second item</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlsPlaceholder.SaveViewState">
            <summary>
            Walks recursively through all child controls and stores their type in ViewState and then calls the default 
            SaveViewState mechanism
            </summary>
            <returns>Array of objects that contains the child structure in the first item, 
            and the base ViewState in the second item</returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlsPlaceholder.RestoreChildStructure(System.Web.UI.Pair,System.Web.UI.Control)">
            <summary>
            Recreates a single control and recursively calls itself for all child controls
            </summary>
            <param name="persistInfo">A pair that contains the controls persisted information in the first property,
            and an ArrayList with the child's persisted information in the second property</param>
            <param name="parent">The parent control to which Controls collection it is added</param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlsPlaceholder.PersistChildStructure(System.Web.UI.Control,System.String)">
            <summary>
            Saves a single control and recursively calls itself to save all child controls
            </summary>
            <param name="control">reference to the control</param>
            <param name="controlCollectionName">contains an abbreviation to indicate to which control collection the control belongs</param>
            <returns>A pair that contains the controls persisted information in the first property,
            and an ArrayList with the child's persisted information in the second property</returns>
        </member>
        <member name="E:egestao.Web.Controls.UI.DynamicControlsPlaceholder.ControlRestored">
            <summary>
            Occurs when a control has been restored from ViewState
            </summary>
        </member>
        <member name="E:egestao.Web.Controls.UI.DynamicControlsPlaceholder.PreRestore">
            <summary>
            Occurs when the DynamicControlsPlaceholder is about to restore the child controls from ViewState
            </summary>
        </member>
        <member name="E:egestao.Web.Controls.UI.DynamicControlsPlaceholder.PostRestore">
            <summary>
            Occurs after the DynamicControlsPlaceholder has restored the child controls from ViewState
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicControlsPlaceholder.ControlsWithoutIDs">
            <summary>
            Specifies whether Controls without IDs shall be persisted or if an exception shall be thrown
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.HandleDynamicControls">
            <summary>
            Specifies the possibilities if controls shall be persisted or not
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.HandleDynamicControls.DontPersist">
            <summary>
            DynamicControl shall not be persisted
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.HandleDynamicControls.Persist">
            <summary>
            DynamicControl shall be persisted
            </summary>
        </member>
        <member name="F:egestao.Web.Controls.UI.HandleDynamicControls.ThrowException">
            <summary>
            An Exception shall be thrown
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DynamicControlEventHandler">
            <summary>
            Represents the method that will handle any DynamicControl event.
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DynamicControlEventArgs">
            <summary>
            Provides data for the ControlRestored event
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicControlEventArgs.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of DynamicControlEventArgs class.
            </summary>
            <param name="dynamicControl">The control that was just restored.</param>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicControlEventArgs.DynamicControl">
            <summary>
            Gets the referenced Control when the event is raised
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DynamicDropDownList">
            <summary>
            DynamicDropDownList Class
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicDropDownList.#ctor">
            <summary>
            DynamicDropDownList Constructor 
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicDropDownList.OnInit(System.EventArgs)">
            <summary>
            DynamicDropDownList.OnInit() Method (override)
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicDropDownList.Render(System.Web.UI.HtmlTextWriter)">
            <summary>
            DynamicDropDownList.Render() Method (override)
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicDropDownList.HandlerPageName">
            <summary>
            DynamicDropDownList.HandlerPageName Property
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicDropDownList.GetParameterName">
            <summary>
            DynamicDropDownList.GetParameterName Property 
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicDropDownList.OtherGetParameters">
            <summary>
            DynamicDropDownList.OtherGetParameters Property 
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicDropDownList.DDLToChargeID">
            <summary>
            DynamicDropDownList.DDLToChargeID Property
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicDropDownList.Asynchronous">
            <summary>
            DynamicDropDownList.Asynchronous Property
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DynamicDropDownListDesigner">
            <summary>
            Classe de desenho do controle <see cref="T:egestao.Web.Controls.UI.DynamicDropDownList"/> em design.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DynamicDropDownListDesigner.GetDesignTimeHtml">
            <summary>
            Método que desenha controle.
            </summary>
            <returns></returns>
        </member>
        <member name="P:egestao.Web.Controls.UI.DynamicDropDownListDesigner.AllowResize">
            <summary>
            Indica se o controle pode ser redimensionado.
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DualListBox">
            <summary>
            	Controle que gera csdigo javascript para tratar
            	duplo ListBox.
            	Gera 2 ListBox e 4 botues onde i possmvel mover os itens
            	entre os Lists
            	
            	- Nco gera postback nos bottes.
            	- Gera campos hidden para fazer post dos valores
            
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.#ctor">
            <summary>
            Contrutor da Classe
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.FindControl(System.String,System.Int32)">
            <summary>
            Localiza o controle 
            </summary>
            <param name="id"></param>
            <param name="pathOffset"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.OnInit(System.EventArgs)">
            <summary>
            OnInit
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.RenderizaControle(egestao.Web.Controls.UI.DualListBox,System.Web.UI.HtmlTextWriter)">
            <summary>
            Renderizagco do Componente
            </summary>
            <param name="ctl"></param>
            <param name="writer"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.Render(System.Web.UI.HtmlTextWriter)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.Render(System.Web.UI.HtmlTextWriter)"/>
            </summary>
            <param name="writer"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.OnPreRender(System.EventArgs)">
            <summary>
            Override PreRender to add attributes.
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.OnDataBinding(System.EventArgs)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.OnDataBinding(System.EventArgs)"/>
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.SaveViewState">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.SaveViewState"/>
            </summary>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.LoadViewState(System.Object)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.LoadViewState(System.Object)"/>
            </summary>
            <param name="savedState"></param>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.LeftBoxItems">
            <summary>
            <see cref="T:System.Web.UI.WebControls.ListItemCollection"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.RightBoxItems">
            <summary>
            <see cref="T:System.Web.UI.WebControls.ListItemCollection"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DataLeftBoxText">
            <summary>
            Nome da coluna a ser mostrada no Listbox do lado esquerdo
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DataLeftBoxValue">
            <summary>
            Nome da coluna da tabela do Listbox do lado esquerdo
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DataRightBoxText">
            <summary>
            Nome da coluna de texto da tabela do Listbox do lado direito
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DataRightBoxValue">
            <summary>
            Nome da coluna da tabela do Listbox do lado direito
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DataSourceLeft">
            <summary>
            Tabela de onde serco lidos os dados
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DataSourceRight">
            <summary>
            Tabela de itens selecionados
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.CssTable">
            <summary>
            CSS da tabela onde sera renderizado o controle
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.CssListBoxRight">
            <summary>
            CSS do listbox da direita
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.CssListBoxLeft">
            <summary>
            CSS do listbox da esquerda
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.CssButton">
            <summary>
            CSS dos botues onde sera renderizado o controle
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner">
            <summary>
            Classe para desenhar o controle em Design Time
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.#ctor">
            <summary>
             Classe para desenhar o controle em Design Time
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.Initialize(System.ComponentModel.IComponent)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.Initialize(System.ComponentModel.IComponent)"/>
            </summary>
            <param name="component"></param>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.GetDesignTimeHtml">
            <summary>
             override method to return custom HTML in design-time
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.GetDesignTimeHtml"/>
            </summary>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.PreFilterProperties(System.Collections.IDictionary)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.PreFilterProperties(System.Collections.IDictionary)"/>
            </summary>
            <param name="properties"></param>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.AllowResize">
            <summary>
            Overrides <see cref="P:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.AllowResize"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DesignTimeHtmlRequiresLoadComplete">
            <summary>
            <see cref="P:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DesignTimeHtmlRequiresLoadComplete"/>
            </summary>
        </member>
        <member name="P:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSource">
            <summary>
            <see cref="P:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSource"/>
            </summary>
        </member>
        <member name="T:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter">
            <summary>
            <see cref="T:System.ComponentModel.TypeConverter"/>
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.#ctor">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.#ctor"/>
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)"/>
            </summary>
            <param name="context"></param>
            <param name="sourceType"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)"/>
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.LeftBoxFieldConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="T:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter">
            <summary>
            <see cref="T:System.ComponentModel.TypeConverter"/>
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.#ctor">
            <summary>
            RightBoxFieldConverter()
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)"/>
            </summary>
            <param name="context"></param>
            <param name="sourceType"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)"/>
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.RightBoxFieldConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="T:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter">
            <summary>
            <see cref="T:System.ComponentModel.TypeConverter"/>
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.#ctor">
            <summary>
            TypeConverter
            </summary>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)"/>
            </summary>
            <param name="context"></param>
            <param name="sourceType"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)"/>
            </summary>
            <param name="context"></param>
            <param name="culture"></param>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.GetStandardValues(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.GetStandardValuesExclusive(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
        <member name="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            <see cref="M:egestao.Web.Controls.UI.DualListBox.DualListBoxDesigner.DataSourceMemberConverter.GetStandardValuesSupported(System.ComponentModel.ITypeDescriptorContext)"/>
            </summary>
            <param name="context"></param>
            <returns></returns>
        </member>
    </members>
</doc>
